用C++帮我写一个猜数游戏
时间: 2023-05-21 14:06:11 浏览: 82
很高兴为您服务!以下是一个简单的猜数游戏程序,它可以随机生成一个 1 至 100 的数字,您需要用 C 语言编写并运行它:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int num, guess, count = 0;
srand(time(0));
num = rand() % 100 + 1;
printf("欢迎来到猜数游戏!\n");
do {
printf("请输入一个 1 至 100 的整数: ");
scanf("%d", &guess);
count++;
if (guess > num)
printf("很遗憾,猜大了!\n");
else if (guess < num)
printf("很遗憾,猜小了!\n");
else
printf("恭喜你,猜对了!你用了 %d 次尝试。\n", count);
} while (guess != num);
return 0;
}
请注意,这只是一个非常简单的示例程序,您可以随时根据需要修改它。谢谢!
相关问题
生成一个C++的猜数游戏
好的,以下是一个简单的猜数游戏的代码:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int num, guess, tries = 0;
srand(time(0));
num = rand() % 100 + 1;
printf("猜数游戏!\n");
do
{
printf("请输入一个1到100之间的整数:");
scanf("%d", &guess);
tries++;
if (guess > num)
{
printf("太大了!\n");
}
else if (guess < num)
{
printf("太小了!\n");
}
else
{
printf("恭喜你,猜对了!你用了%d次机会。\n", tries);
}
} while (guess != num);
return 0;
}
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;
bool win = false;
cout << "Welcome to the Guessing Game!" << endl;
cout << "I have a number between 1 and 100. Can you guess it?" << endl;
while (!win) {
cout << "Enter your guess: ";
cin >> guess;
tries++;
if (guess == number) {
win = true;
cout << "Congratulations! You guessed the number in " << tries << " tries." << endl;
} else if (guess < number) {
cout << "Too low. Try again." << endl;
} else {
cout << "Too high. Try again." << endl;
}
}
return 0;
}
```
这个代码实现了一个简单的C++猜数游戏。程序会生成一个1~100之间的随机数,并提示玩家输入猜测的数字。如果玩家猜中了,程序会宣布其获胜,并显示猜测次数。如果猜错了,程序会告诉玩家猜的数字是偏高还是偏低,并让玩家继续猜。程序会记录猜测次数,直到玩家猜中为止。
阅读全文