猜数游戏.大佬求解.为什么错了
#include<stdlib.h>#include<stdio.h>
#include<time.h>
void main(void)
{
srand(time=(0));
int number=rand()%10+1;
int b=0;
int c=0;
printf("我已经想好了一个1~10的数");
do{
printf("请猜一下这个数是多少?");
scanf("%d,&b");
c++;
if(b>number){printf("你猜的偏大");}
else if(b<number){printf("你猜的偏小");}
else{printf("请遵守规则");}
}while(b!=number);
printf
("恭喜你只猜了%d次,就猜到了答案\n",c);
return 0;
} #include<stdlib.h>
#include<stdio.h>
#include<time.h>
int main(void)
{
srand(time(0)); // 这里改了一下。把=去掉
int number=rand()%10+1;
int b=0;
int c=0;
printf("我已经想好了一个1~10的数");
do{
printf("请猜一下这个数是多少?");
scanf("%d", &b); // 这里也有问题
c++;
if(b>number){printf("你猜的偏大");}
else if(b<number){printf("你猜的偏小");}
else{printf("请遵守规则");}
}while(b!=number);
printf("恭喜你只猜了%d次,就猜到了答案\n", c);
return 0;
}
页:
[1]