简单好玩的VC++C语言代码
时间: 2023-08-23 12:08:22 浏览: 159
简单c++程序代码
5星 · 资源好评率100%
以下是一个简单的VC C语言代码,实现了一个猜数字游戏:
```
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
srand(time(NULL)); // 随机数种子初始化
int answer = rand() % 100 + 1; // 生成1到100之间的随机数
int guess = 0; // 玩家猜的数字
int count = 0; // 猜的次数
printf("猜数字游戏开始!\n");
while (guess != answer) {
printf("请输入你的猜测(1-100之间的整数):");
scanf("%d", &guess);
count++;
if (guess < answer) {
printf("你猜的数字太小了!\n");
} else if (guess > answer) {
printf("你猜的数字太大了!\n");
} else {
printf("恭喜你,猜对了!你用了%d次机会。\n", count);
}
}
return 0;
}
```
玩家需要在控制台中输入猜测的数字,程序会告诉玩家猜的数字是偏大还是偏小,直到猜对为止。这个代码非常简单,但是可以让人在闲暇时间中娱乐一下。
阅读全文