gpt4 book ai didi

c - C语言中如何判断输入的内容是否为数字?

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

在C的main函数中:

void main(int argc, char **argv)
{
// do something here
}

在命令行中,我们将输入任何数字,例如 12 作为输入,但它会被视为 argv 参数的 char 数组,但是如果人们输入 helloc,如何确保输入是数字?

最佳答案

另一种方法是使用 isdigit 函数。下面是它的代码:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#define MAXINPUT 100
int main()
{
char input[MAXINPUT] = "";
int length,i;

scanf ("%s", input);
length = strlen (input);
for (i=0;i<length; i++)
if (!isdigit(input[i]))
{
printf ("Entered input is not a number\n");
exit(1);
}
printf ("Given input is a number\n");
}

关于c - C语言中如何判断输入的内容是否为数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58845876/

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