一道题目,无从下手
程序随机产生一个1-100之间的整数,并提示用户不断的输入一个1-100之间的数字来猜这个数,如果猜中则程序结束,没有猜中的话提示用户猜的太大还是太小,然后继续猜,直到猜中为止先用一个随机取数函数,然后输入你猜的数,再用一个while 循环嵌套的if语句就可以了
源程序如下
#include<stdio.h>
#include<stdlib.h>
void main(void)
{ int a,b=-1,c;
randomize();
a=rand()%100+1;
while(b!=0)
{ printf("input the number you guess:");
scanf("%d",&c);
if(a==c)
{ printf("you are ok");
break;
}
else if(c<=a)
{ printf("the number you guess is small,please input a bigger one");
continue;
}
else
{ printf("the number you guess is big ,please input a small one");
continue;
}
}
system("pause");
}