c语言入门中,写了个猜数小游戏,求指点!
Posted hulastudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言入门中,写了个猜数小游戏,求指点!相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
//自己写的问件,写的不是太好,如有问题多交流,微信15705206480
int main()
{
srand(time(0));
int number =rand()%100+1;
int count =0;
int a =0;
printf("我已经想好了一个1到100之间的数!");
//调用do while语句
do{
printf("请猜数吧:");
scanf("%d",&a);
count++;
//调用if语句
if (a > number) {
printf("太大了啊,接近了哦");
}else if (a < number) {
printf("太小了,接近了哦");
}
}
while (a != number);
//输出结果
printf ("你竟然只用了%d次就才出了结果,真棒!\\n", count);
}
编译软件用的是devcpp,求指教。
以上是关于c语言入门中,写了个猜数小游戏,求指点!的主要内容,如果未能解决你的问题,请参考以下文章