0-100中猜一个数!
刚开始念大学,学校留了这个作业,我做出来后,班导说逻辑错误,求各位大神帮忙看看,指教指教。
/* Note:Your choice is C IDE */
#include<stdlib.h>
#include<time.h>
#include<stdio.h>
main()
{
int a,b;
srand(time(NULL));
b=0+(rand()%101);
printf("请猜一个数字:\n");
while(a!=b)
{ scanf("%d",&a);
if(a==b)
printf("恭喜你猜对了!");
else
if(a>b)
printf("你猜的数大于b!\n");
if(a<b)
printf("你猜的数小于!b\n");
}
system("pause");
return;
}
明天之后的幸存者
浏览 1263回答 1
打开App,查看更多内容