我正在制作一个简单的立方根猜测游戏,其中生成随机并显示它的立方体,然后用户输入立方根.这是我的计划:
int main()
try {
int max, min;
max = 99; min = 1; // only cubes of 1-99 are displayed
// display the title
cout << "\n\t\t\t\tCube Root Game" << endl;
cout << "\t\t\t\t=============\n" << endl;
srand(time(0)); // seed for random number generator
// display 10 numbers for the user to guess the cube root
for (int i = 0; i < 10; i++) {
int answer; // answer inputted by the user
int temp = rand() % (max - min) + min; // random number
int t3 = temp * temp * temp; // cube of the random number
cout << "\tEnter the cube root for " << t3 << " : ";
cin >> answer;
if (answer == t3) {
cout << "\tCorrect answer!\n" << endl;
}
else {
cout << "\tIncorrect answer\n" << endl;
}
}
keep_window_open("q");
}
catch (runtime_error& e) {
cerr << "Error: " << e.what() << endl;
keep_window_open("q");
return 1;
}
catch(...) {
cerr << "Unexpected error.\n";
}
Run Code Online (Sandbox Code Playgroud)
问题是,当我正确输入一个立方根时,它总是说它是不正确的,但if if对我来说似乎没问题,所以我不知道出了什么问题.
if (answer == t3)
Run Code Online (Sandbox Code Playgroud)
你不是这个意思吗:
if (answer == temp)
Run Code Online (Sandbox Code Playgroud)
(你希望用户猜测根,而不是立方体,对吧?):-)
| 归档时间: |
|
| 查看次数: |
265 次 |
| 最近记录: |