如何在代碼中插入rand/srand使其以隨機順序提出問題? 我對rand和srand不是很熟悉。我需要的是將srand和/或rand放入開關盒中,但無法理解如何使其工作。如何實現rand/srand? C++
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstdlib>
#include <string>
#include <ctime>
using namespace std;
struct highscore{
int svar;
};
int main(){
ofstream highscore;
bool fail = true;
int lost, fraga, svar = 0; // these are for the Start option
int fraga2; // for srand/rand
int load ,loadh, loadg, tillbaka; // these are for the loading option
string line; // also loading option
char val;
do{
cout << " Menu" << endl;
cout << " 1. Start" << endl;
cout << " 2. Load" << endl;
cout << " 3. Credits" << endl;
cin >> val;
switch(val){
case '1':
highscore.open("Highscore.txt", ios::app);
if (!highscore){
cout << "file could not open";
exit (1);
}
srand(fraga2(time(0));
for (int fraga = 0; fraga< 500; fraga++){
cout << "WELCOME TO THE CISCO QUIZ GOOD LUCK" << endl;
cout << "how many layers are there in the OSI model?" << endl;
cout << "1. 4" << endl;
cout << "2. 5" << endl;
cout << "3. 7" << endl;
cin >> fraga;
switch(fraga){
case 1:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 2:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes, 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 3:
svar = svar + 5;
fraga = fraga + 1;
break;
default:
cout << "error" << endl;
}
if(svar == 5){
cout << "what is the full name of OSPF?" << endl;
cout << "1. Open Shortest Path First" << endl;
cout << "2. Online Shooting Pro Fishing" << endl;
cout << "3. On Short Path First" << endl;
cin >> fraga;
switch(fraga){
case 1:
svar = svar + 5;
fraga = fraga +1;
break;
case 2:
cout << "Game Over!"<< endl;
cout << "Do you wish to restart? (answer with 1 for yes, 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 3:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes, 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
}
}
if(svar == 10){
cout << "What does TTL mean?" << endl;
cout << "1. Twin Twitched Life" << endl;
cout << "2. Two Time Lives" << endl;
cout << "3. Time To Live" << endl;
cin >> fraga;
switch(fraga){
case 1:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with yes, YES or Yes)"<< endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 2:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 3:
svar = svar + 10;
fraga = fraga +1;
break;
}
}
if(svar == 20){
cout << "What is the first command you enter on a Cisco router?" << endl;
cout << " 1. enable"<< endl;
cout << " 2. disable" << endl;
cout << " 3. enter" << endl;
cin >> fraga;
switch(fraga){
case 1:
svar = svar + 5;
fraga = fraga +1;
break;
case 2:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 3:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
}
}
cout << svar;
if(svar == 25){
cout << "which protocol is the most prefered?" << endl;
cout << " 1. RIP" << endl;
cout << " 2. EGRP" << endl;
cout << " 3. EIGRP" << endl;
cin >> fraga;
switch(fraga){
case 1:
cout << "Game Over!" << endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 2:
cout << "Game Over!"<< endl;
cout << "Do you wish to restart? (answer with 1 for yes and 2 for no)" << endl;
cin >> lost;
if(lost == 2){
fail = false;
}
break;
case 3:
svar = svar + 15;
fraga = fraga +1;
cout << "You have completed the game press 1 to exit or if you wish to do it again or check highscores press 2" << endl;
cin >> lost;
if (lost == 1){
fail = false;
}
else{
fail = true;
}
break;
}
}
}
highscore <<"Score: " << svar << '\n';
highscore.close();
cin.ignore(10,'\n');
cin.get();
case '2':
cout << "type 1 to load game or type 2 to load highscores" << endl;
cin >> load;
if (load == 1){
cout << "in progress";
}
else if(load == 2){
ifstream loadh ("highscore.txt");
if (loadh.is_open())
{
while (loadh.good())
{
getline (loadh,line);
cout << line << endl;
}
cout << "do you wish to return to the menu press 1 else press any number" << endl;
if (tillbaka != 1){
fail = false;
}
highscore.close();
}
}
cin.ignore(10,'\n');
cin.get();
break;
case '3':
cout << "made by trickjay the most awesome guy on the planet!!!" << endl;
cin.ignore(10,'\n');
cin.get();
break;
}
}while(fail);
}
也許你應該閱讀這些功能的文件,如果你不知道他們在做什麼。 – 2013-05-02 08:05:43
首先閱讀手冊。 – 2013-05-02 08:05:54
閱讀本手冊後,製作一個小程序,顯示您試圖實現的目標。然後,將其合併到您的代碼中。如果您對小程序有特殊疑問,請回來。 – stefaanv 2013-05-02 08:15:11