网课里一个无聊的猜数游戏
作者:互联网
网课里看到了一个猜数游戏,分享一下,也许许多东西并不能分高低,只是不同罢了。
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main ()
{
srand(time(0)) ;
int a=rand()%100;
int count=0,b;
printf("我想好了一个一百以内的数,猜吧。\n");
do{
scanf("%d",&b);
count++;
if(b>a)
printf("大了\n");
else if(b<a)
printf("小了\n");
} while(b!=a);
printf("你用了%d次猜出来",count);
}
学了一个学期的c,感觉没入门就结束了。。
标签:count,猜数,无聊,网课,int,printf,include 来源: https://blog.csdn.net/m0_63753482/article/details/122509319