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 - 50 Views - Last Post: 48 minutes ago
#1
Reputation: 0
- Posts: 50
- Joined: 08-April 13
Posted Today, 12:57 PM
hello guys, i have a question. in this test program im making it does so if you get a problem wrong it re does the question, but it generates the same number, is their a way to generate a different number?#include <iostream> #include <string> #include <ctime> using namespace std; int main() { srand (time(NULL)); int grade, operands[2], userAnswer; string quiz, name; char answer, again; cout << "What is your name?\n"; cin >> name; cout << "Were going to take a quiz, are you ready? <y/n>\n"; cin >> answer; if(answer == 'y' || answer == 'Y') { cout << "Ok lets get started " << name << endl; cout << "First lets do a math problem.\n"; operands[0] = rand()%50; operands[1] = rand()%20; do { cout << "What is " << operands[0] << " + " << operands[1] << " ?\n"; cin >> userAnswer; if(userAnswer==operands[0] + operands[1]) { cout << "You got the Problem right, off to the next question\n"; } else { cout << "Problem incorrect\n"; cout << "Would you like to try again?\n"; cin >> again; } }while(again == 'y' || again == 'Y'); } system("pause"); return 0; }
Is This A Good Question/Topic? 0
Replies To: random numbers help
#2
Reputation: 2473
- Posts: 8,474
- Joined: 08-August 08
Re: random numbers help
Posted Today, 01:12 PM
Have you tried putting your "if" statement inside the do ... while loop instead of enclosing it?
#3
Reputation: 0
- Posts: 50
- Joined: 08-April 13
Re: random numbers help
Posted Today, 01:15 PM
i dont understand what you are saying.
#4
Reputation: 2473
- Posts: 8,474
- Joined: 08-August 08
Re: random numbers help
Posted Today, 01:23 PM
Think about it.
#5
Reputation: 0
- Posts: 50
- Joined: 08-April 13
Re: random numbers help
Posted Today, 05:32 PM
do { if(answer == 'y' || answer == 'Y') { cout << "Ok lets get started " << name << endl; cout << "First lets do a math problem.\n"; operands[0] = rand()%50; operands[1] = rand()%20; /*******************first question********************************/ cout << "What is " << operands[0] << " + " << operands[1] << " ?\n"; cin >> userAnswer; if(userAnswer==operands[0] + operands[1]) { cout << "You got the Problem right, off to the next question\n"; system("cls"); } else { cout << "Problem incorrect\n"; cout << "Would you like to try again?\n"; cin >> again; } }while(again == 'y' || again == 'Y');
was this what you were talking about
also on
char again;
im getting a run time error on it saying it is no initialized and i cant find the reason behind it. if you no anything about that. thank you
#6
Reputation: 936
- Posts: 3,268
- Joined: 19-February 09
Re: random numbers help
Posted 48 minutes ago
You could have a function for the math problem, and another to check whether to go again.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/319084-random-numbers-help/
jackie robinson Coachella 2013 Scary Movie 5 MTV Movie Awards 2013 masters masters leaderboard Psy Gentleman
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.