gpt4 book ai didi

c++ - Xcode C++ 程序结果不显示正确答案

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:12:42 26 4
gpt4 key购买 nike

我这里有一个程序,它使用两个随机生成的数字随机运行加法或减法。然后用户必须输入答案,如果正确,则显示“正确”,如果错误,则显示“不正确”并显示正确答案。当我运行我的代码时,它似乎没有显示正确的答案,而是一个它认为正确的错误答案。例如,我运行代码,我得到的问题是 950 + 921。答案应该是 1871,但它告诉我我不正确,程序的正确答案是 1042。我不确定错误在哪里我的代码,但如果你想看一下,就在这里:

#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <ctime>
using namespace std;

int main()

{
srand(static_cast<unsigned int>(time(NULL)));

cout << "Welcome to the Math Tutor!" << endl;

int N1 = rand() % 999;
int N2 = rand() % 100;
int symbol = rand() % 2;
int Result;
int Answer;

cout << setw(5) << N1 << endl;

if(symbol == 1)
{
cout << "+";
Result = N1 + N2;
}

else
{
cout << "-";
Result = N1 - N2;
}


cout << setw(3) << N2 << symbol << "\n";
cout << setw(5) << "------\n\n";

cout << "Enter your answer: ";
cin >> Answer;

if(Answer == Result)
{
cout << "You are correct!\n\n";
}

else
{
cout << "You are incorrect, the correct answer is: " << Result << "\n\n";
}

cin.ignore(1);
return 0;

}

最佳答案

你在 N2 之后输出 symbol,从这一行:

cout << setw(3) << N2 << symbol << "\n";

因此,实际计算不是 950 + 921,而是 950 + 92 1042

要解决此问题,请不要输出 symbol,如下所示:

cout << setw(3) << N2 << "\n";

关于c++ - Xcode C++ 程序结果不显示正确答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38359002/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com