gpt4 book ai didi

c - 如何使用 getchar() 循环遍历用户输入并检查字符是字母还是数字

转载 作者:行者123 更新时间:2023-11-30 16:41:36 30 4
gpt4 key购买 nike

我对编程完全陌生,我拿起一本 C 手册来自学。我不想使用数组,因为我正在尝试使用 getchar() 进行练习。如果用户输入数字或字母以外的任何内容,我希望能够输出错误消息。我也在尝试练习C库函数isalpha()和isdigit()。这是我到目前为止所写的,但我的输出不太正确。

输入 1:“你好”

预期输出:“有效输出”

输入 2:“hello5”

预期输出:“有效输出”

输入 3:“你好!”

预期输出:“无效输出”

但是我的程序对于上述所有三个输入都返回“有效输入”请帮助新手尝试学习。我非常感激。

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

int main ()
{
char ch;
int len;
int valid;


printf("Enter a word: ");

for(length = 0; (ch = getchar()) != '\n'; len++)
{

if(isalpha(ch) || isdigit(ch))
{
valid = 1;
}
else
{
valid = 0;
}

}
printf("Input length: %d\n", len);

if (valid == 1)
{
printf("Valid\n");
}
if(valid == 0)
{
printf("\n");
}

return 0;
}

最佳答案

你就快到了。一些陷阱:

首先,您的变量名称“length”而不是“len”有一个拼写错误。

第二,正如 Mitchel0022 所说,如果输入的最后一个字符有效,您的程序将始终显示“有效”,因为您在每次迭代时为变量“有效”重新分配了新值。但您不必使用“break 语句,因为您需要继续循环才能获得长度,因此请坚持使用您的标志。

现在你的程序应该可以正常运行了。复制并粘贴以下代码:

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

int main ()
{
char ch;
int len;
//flag is set true
int valid = 1;

printf("Enter a word: \n");

for(len = 0; (ch = getchar()) != '\n'; len++)
{
//change flag if character is not number nor letter
if(!isalpha(ch) && !isdigit(ch))
{
valid = 0;
}
}
printf("Input length: %d\n", len);

if (valid == 1)
{
printf("Valid\n");
}
else
{
printf("Invalid\n");
}

return 0;
}

关于c - 如何使用 getchar() 循环遍历用户输入并检查字符是字母还是数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46209743/

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