gpt4 book ai didi

c++ - C++ 中的随机整数

转载 作者:太空宇宙 更新时间:2023-11-03 10:28:54 25 4
gpt4 key购买 nike

<分区>

我刚刚用 C++ 编写了下面的代码,但我遇到了一个问题:出现的随机数始终相同..!!这是我的代码和屏幕截图:

#include <iostream>
using namespace std;

int main() {
cout << "I got a number in my mind... can you guess it?" << endl;
int random;
random = rand() % 20 + 1;

cout << random << endl;
system("pause");
return 0;
}

截图:http://tinyurl.com/n49hn3j

25 4 0
文章推荐: c++ - 'wrap' 异常是个好主意吗?
文章推荐: c# - mscorlib.dll 中出现 'System.FormatException' 类型的异常,但未在用户代码中处理
文章推荐: c# - 将 Winforms ListBox 集合绑定(bind)到 List