C 用户输入验证 - 只需要一个转换为 int 的字符

发布于 2024-12-15 03:35:40 字数 731 浏览 0 评论 0原文

我在 C 中获取用户输入时遇到问题。我只想获取第一个数字。我从字符中过滤用户输入,但是当我输入 2 位数字(错误的用户输入)时,程序开始表现得很奇怪,

它显示:

Turn 2 : What number? 21
Turn 2 : What number?  1 6 2 4 2

//User input validation
int GetColorGuess(int counter)
{
    int color=1;
    int inputChar=' ';
    do{
        printf("Turn %d : What number? ",counter);
        inputChar=getchar();
        getchar();
    }
    while(inputChar<((int)'1') || inputChar>selectedColorSize+'0');

    color = digit_to_int(inputChar);

    return color;
}
//convert char which represents digit to int
int digit_to_int(char d)
{
 char str[2];
 str[0] = d;
 str[1] = '\0';
 return (int) strtol(str, NULL, 10);
}

任何人都可以帮我解决问题吗?

I have problem taking user input in C. I want to take the first number only. I filter the user input from characters but when I enter 2 digits(wrong user input) the program starts to behave strange

it displays:

Turn 2 : What number? 21
Turn 2 : What number?  1 6 2 4 2

//User input validation
int GetColorGuess(int counter)
{
    int color=1;
    int inputChar=' ';
    do{
        printf("Turn %d : What number? ",counter);
        inputChar=getchar();
        getchar();
    }
    while(inputChar<((int)'1') || inputChar>selectedColorSize+'0');

    color = digit_to_int(inputChar);

    return color;
}
//convert char which represents digit to int
int digit_to_int(char d)
{
 char str[2];
 str[0] = d;
 str[1] = '\0';
 return (int) strtol(str, NULL, 10);
}

Can anyone help me what is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原谅过去的我 2024-12-22 03:35:40

当输入“21”时,您的第一个 getchar() 读取“2”,下一个 getchar()(可能应该吃掉换行符)读取“1”。然后输入“3”时,第一个 getchar() 读取换行符,第二个 getchar() 读取“3”。更改您的代码以使用 sscanf 代替。

When entering "21" your first getchar() reads the '2', the next getchar(), which probably should eat the newline, reads the '1'. when then entering "3" your first getchar() reads the newline and your second getchar() reads the '3'. Change your code to use sscanf instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文