用c语言写一个猜数程序
时间: 2023-12-04 18:03:40 浏览: 107
好的,我可以为您解答C语言写一个猜数程序的问题。以下是一个C语言写的猜数字的程序:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int number = 0;
int guess = 0;
int count = 0;
srand((unsigned) time(NULL));
number = rand() % 100 + 1;
printf("我已经想好了一个数字,它在1-100之间,您可以开始猜了!\n");
do
{
count++;
printf("请猜一个数字:");
scanf("%d", &guess);
if(guess > number)
{
printf("您猜的数字太大了,请继续尝试!\n");
}
else if(guess < number)
{
printf("您猜的数字太小了,请继续尝试!\n");
}
else
{
printf("恭喜您,猜对了!\n");
printf("您一共猜了%d次。\n", count);
}
} while(guess != number);
return 0;
}
阅读全文