我正在研究教科书中的一个挑战问题,我应该在其中生成一个 1-10 之间的随机数,让用户猜测,并使用 isdigit() 验证他们的响应。我(大部分)让程序与下面的代码一起工作。
我遇到的主要问题是使用 isdigit() 需要将输入存储为字符,然后我必须在比较之前对其进行转换,以便比较实际数字而不是数字的 ASCII 码。
所以我的问题是,由于此转换仅适用于数字 0 - 9,我如何更改代码以允许用户在生成的数字为 10 时成功猜测?或者,如果我希望游戏的范围在 1-100 之间,我将如何实现呢?如果我使用的可能范围大于 0-9,我可以不使用 isdigit() 验证输入吗?验证用户输入的更好方法是什么?
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>
int main(void) {
char buffer[10];
char cGuess;
char iNum;
srand(time(NULL));
iNum = (rand() % 10) + 1;
printf("%d\n", iNum);
printf("Please enter your guess: ");
fgets(buffer, sizeof(buffer), stdin);
sscanf(buffer, "%c", &cGuess);
if (isdigit(cGuess))
{
cGuess = cGuess - '0';
if (cGuess == iNum)
printf("You guessed correctly!");
else
{
if (cGuess > 0 && cGuess < 11)
printf("You guessed wrong.");
else
printf("You did not enter a valid number.");
}
}
else
printf("You did not enter a correct number.");
return(0);
}