gpt4 book ai didi

C++问题在循环内/出现提示时生成新的随机数

转载 作者:搜寻专家 更新时间:2023-10-31 02:06:15 26 4
gpt4 key购买 nike

我几乎完成了这个基本的骰子程序,但无法找出我对 srand 做错了什么。它应该为用户随机掷 2 个骰子,他们可以选择保留他们掷出的 (K) 或再次掷出 (R)。我希望程序每次在询问用户是否要再次掷骰子时输入“R”时为掷骰子输出新的“随机”数字,但相同的数字会继续显示。

程序的其余部分似乎运行良好——用户与计算机对战。当用户在要求保留或重新滚动时输入“R”时,如何为 roll1 和 roll2 生成新数字?

#include <stdlib.h> /// need this for srand() -- for random numbers
#include <time.h> /// need this for time() -- time
#include <iostream> /// need this for cout<< and cin>>
using namespace std; /// need this for cout<< and cin>>

int main()
{
int iseed = (int)time(0);
srand(iseed);

cout << "Beat the computer! \n";

int roll1 = 1+rand()%6; /// make a random number for die # 1 for user
int roll2 = 1+rand()%6; /// make a random number for die # 2 for user
int UserRoll = roll1 + roll2; /// totals the sum of die 1 and die 2 for the user
char keep;

do
{
cout << "You rolled a " << roll1 << " and a " << roll2 << " for a total of: " << UserRoll << "\n";
cout << "\n";

do
{
cout << "Would you like to keep this total, or roll again? \n";
cout << "\n";
cout << "Enter \"K\" for keep and \"R\" for roll again: \n";
cin >> keep;

if (keep != 'K' && keep != 'R')

{
cout << "That is not a valid choice. Please choose Y to keep your total or N to roll again. " << endl;
cout << "\n";
}

} while(keep != 'K' && keep != 'R');



if (keep == 'R')
{
cout << "You chose R--let's roll again. \n";
}


else
{
cout << "Great! Your total is " << UserRoll << "\n";
}
} while (keep == 'R');

int roll3 = 1+rand()%6; /// make a random number for die # 1 for computer
int roll4 = 1+rand()%6; /// make a random number for die # 2 for computer
int ComputerRoll = roll3 + roll4; /// totals the sum of die 1 and die 2 for the computer


cout << "The computer rolled a " << roll3 << " and a " << roll4 << " for a total of: " << ComputerRoll << "\n";
cout << "\n";

if (ComputerRoll < UserRoll)
{
cout << "Congratulations! You won! \n";
}

if (ComputerRoll > UserRoll)
{
cout << "Sorry. You lose. \n";
}

if (ComputerRoll == UserRoll)
{
cout << "It's a tie. \n";
}

return 0;
}

/*
SAMPLE RUNS:
------------
Beat the computer!
You rolled a 4 and a 6 for a total of: 10

Would you like to keep this total, or roll again?

Enter "K" for keep and "R" for roll again:
R
You chose R--let's roll again.
You rolled a 4 and a 6 for a total of: 10

Would you like to keep this total, or roll again?

Enter "K" for keep and "R" for roll again:
K
Great! Your total is 10
The computer rolled a 4 and a 6 for a total of: 10

It's a tie.

Process returned 0 (0x0) execution time : 8.763 s
Press any key to continue.

*/

最佳答案

您只掷一次并再次使用该掷骰的结果。如果用户再次按 R。它应该再次滚动以更新新数字。为此,只需添加

void roll(){
roll1 = 1+rand()%6; /// make a random number for die # 1 for user
roll2 = 1+rand()%6; /// make a random number for die # 2 for user
UserRoll = roll1 + roll2; /// totals the sum of die 1 and die 2 for the user

}

Remember: roll1,roll2 and UserRoll should declared globally before roll() function

就在 main() 方法之前,当用户按下 R 时调用它在

之后
cout << "Beat the computer! \n";

并将其从 main 方法中移除。这就是您需要做的一切

关于C++问题在循环内/出现提示时生成新的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50548662/

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