为了账号安全,请及时绑定邮箱和手机立即绑定

0-100随机抽取一个数,请各位大神帮忙指点指点。

0-100随机抽取一个数,请各位大神帮忙指点指点。

C
明天之后的幸存者 2016-11-08 19:41:28
刚开始念大学,学校留了这个作业,我做出来后,班导说逻辑错误,求各位大神帮忙看看,指教指教。 /* 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; }
查看完整描述

1 回答

?
望远

TA贡献1017条经验 获得超1032个赞

  #include<stdlib.h>
#include<time.h> 
#include<stdio.h> 
main() { 
 int a,b; 
 srand(time(NULL)); 
 b=0+(rand()%101); 
 printf("请猜一个数字:\n"); 
 scanf("%d",&a);
 while(1) 
 { 
  if(a==b)
  {
   printf("恭喜你猜对了!");
   break;
  }
  else if(a>b) 
   printf("你猜的数大于b!\n"); 
  if(a<b) 
   printf("你猜的数小于!b\n");
  scanf("%d",&a);
  }
 system("pause"); 
 return;
 }

查看完整回答
反对 回复 2016-11-08
  • 1 回答
  • 1 关注
  • 1206 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信