所以我希望这样做,所以你不能输入一个数字,如0或11.我正在使用netbeans 8.1 (GNU cygwin)
。我发现没有使用while循环,并且终端运行成功的构建,无论是否进行循环以确保不存在超出限制的数字。
int main(int argc, char** argv) {
int x;
int guess = 0;
srand(time(NULL));
x = rand() % (10) + 1;
printf("random number is %d. \n", x);
printf("whats your guess? 3 tries. between 1 and 10 \n");
scanf("%d", guess);
while (guess >10 || guess < 0){
printf(" your guess is out of the bounds (1 to 10) re enter: \n");
scanf("%d", guess);
}
return (EXIT_SUCCESS);
}
有什么想法吗? 我打算与&#39; x&#39;进行几次比较。后面。
答案 0 :(得分:1)
只需要一个&amp;扫描f语句中的(&符号)。
scanf("%d", &guess);