Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]5 Replies - 83 Views - Last Post: Yesterday, 06:55 PM
#1
Reputation: 0
- Posts: 3
- Joined: Yesterday, 05:22 PM
Posted Yesterday, 05:24 PM
Write a C++ program that uses a while loop to guess a persons age, ask the user if they want to try again if no end the loop. Of course if they guess it the loop also endsFirst we need to generate a random age to be guessed? So,
// Generate random age to be guessed
srand(time(0));
int age = rand() % 110 //I am assuming not many have lived this long
while (guess != age)
{
//Prompt the user to guess an age
cout << "Guess an age, 1-110: ";
int guess;
cin >> guess
if (guess == age)
cout << "You guessed the correct age!" << endl;
else if (guess != age)
cout << Sorry, you guessed the wrong age, would you like to take another guess?";
This is where I am stuck. If we end the loop here then how will our user be able to guess again? Thanks
Is This A Good Question/Topic? 0
Replies To: While loop for guessing a persons age
#2
Reputation: 2459
- Posts: 8,426
- Joined: 08-August 08
Re: While loop for guessing a persons age
Posted Yesterday, 05:30 PM
The loop doesn't end until the condition is met. As long as guess does not equal age the loop restarts at the top when it reaches the closing brace.
#3
Reputation: 0
- Posts: 3
- Joined: Yesterday, 05:22 PM
Re: While loop for guessing a persons age
Posted Yesterday, 06:15 PM
CTphpnwb, on 07 April 2013 - 05:30 PM, said:
The loop doesn't end until the condition is met. As long as guess does not equal age the loop restarts at the top when it reaches the closing brace.
So how do you ask the user to guess another age and repeat the loop? How do I allow the user to input more guesses if I end it where I ended it and how do I go about repeating the same process when the user does input a 2nd, 3rd ..etc guess. I didn't add the closing brace/endl because I figured there was more to add
Is the code correct if I just end it where I was at or should I add more/fix something. thanks.
#4
Reputation: 2459
- Posts: 8,426
- Joined: 08-August 08
Re: While loop for guessing a persons age
Posted Yesterday, 06:25 PM
Part of learning is trying....and use code tags!
#5
Reputation: 0
- Posts: 3
- Joined: Yesterday, 05:22 PM
Re: While loop for guessing a persons age
Posted Yesterday, 06:37 PM
CTphpnwb, on 07 April 2013 - 06:25 PM, said:
Part of learning is trying....and use code tags!
I understand part of learning is trying, but at the same time I don't even know where to begin. A lil nudge in the right direction would be helpful.
#6
Reputation: 2459
- Posts: 8,426
- Joined: 08-August 08
Re: While loop for guessing a persons age
Posted Yesterday, 06:55 PM
Try this:- Close the loop.
- Compile and run the code.
- Debug.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/317917-while-loop-for-guessing-a-persons-age/
grenada grenada Sikh Sanya Richards Ross decathlon Honey Boo Boo Child marilyn monroe
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন