编写一个猜数字游戏c++
时间: 2023-08-04 22:10:58 浏览: 107
以下是一个简单的猜数字游戏的C ++代码:
```c++
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(0)); // 使用当前时间作为随机种子
int number = rand() % 100 + 1; // 生成1到100之间的随机整数
int guess;
int tries = 0; // 猜测次数
cout << "猜数字游戏" << endl << endl;
do {
cout << "请输入一个1到100之间的整数: ";
cin >> guess;
tries++;
if (guess > number) {
cout << "猜大了!" << endl << endl;
} else if (guess < number) {
cout << "猜小了!" << endl << endl;
} else {
cout << endl << "恭喜你猜对了!" << endl;
cout << "你猜了" << tries << "次。" << endl;
}
} while (guess != number);
return 0;
}
```
运行程序后,将随机生成一个1到100之间的整数,然后要求玩家输入一个猜测数字,程序会根据玩家的猜测提示是猜大了还是猜小了,直到猜对为止。在每次猜测后,都会显示已经猜测的次数。
阅读全文