gpt4 book ai didi

c - 如果用户输入字母或数字,则错误检查

转载 作者:行者123 更新时间:2023-11-30 15:15:27 25 4
gpt4 key购买 nike

我在检查字母时出错。如果输入了一个字母,那么它会打印出错误并退出。如果它是一个数字,那么它应该在 if 下运行该语句(我没有将其放入代码中,因为它目前不相关)。当我输入数字时,它应该运行 if 语句,但是当我输入字母或数字时,它会运行 else 语句。

#include <stdio.h>
#include <ctype.h>


int main()
{
int x;
printf("Enter up to 10 positive integer ending with EOF:\n");

while((scanf("%d",&x)) != EOF && x < 100){


if( isdigit(x) ){
//statement
}

else{
printf("error, wrong input\n");
return 0;
}

}


if(x >= 100)
printf("error, wrong input\n");


return 0;
}

最佳答案

您希望 isdigit 检查 char ,请将 scanf 更改为:

while((scanf("%c",&x)) != EOF && x < 100){  // yes x is an int, but here you want a char

关于c - 如果用户输入字母或数字,则错误检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33620969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com