gpt4 book ai didi

c - C 中的数据验证 - 确保输入格式正确

转载 作者:太空宇宙 更新时间:2023-11-04 08:13:40 26 4
gpt4 key购买 nike

我想写一段代码来确保用户只输入一位数字。如果用户输入类似“0 1 3”的内容,我希望我的程序读取错误消息,但我不知道该怎么做。任何人都知道如何处理这个问题?如果用户输入中间有空格的一堆数字,我当前的代码只接受第一个数字。

请看下面我的代码。谢谢:D

//Prompt the user to enter the low radius with data validation
printf("Enter the low radius [0.0..40.0]: ");
do
{
ret = scanf("%lf", &lowRadius);
//type validation
if (ret != 1)
{
int ch = 0;
while (((ch = getchar()) != EOF) && (ch != '\n'));
printf("Wrong input. Please enter one numerical value: ");
}
//range validation
else if((lowRadius < 0 || lowRadius > 40))
{
printf("Incorrect value. Please enter in range 0-40: ");
}
else break;
} while ((ret != 1) || (lowRadius < 0 || lowRadius > 40));//end while lowRadius

最佳答案

如果将该行读入一个字符串,然后对其进行分析,就可以避免因未提供的输入而挂起的问题。您已经完成了大部分工作,但这显示了如何捕获过多的输入。它的工作原理是扫描 double 之后的字符串以获取更多输入。 sscanf 的返回值告诉您是否存在,因为它返回成功扫描的项目数。

#include <stdio.h>
#include <stdlib.h>

void err(char *message)
{
puts(message);
exit(1);
}

int main(void)
{
double lowRadius = 0.0;
char inp[100];
char more[2];
int conv;
if(fgets(inp, sizeof inp, stdin) == NULL) {
err("Input unsuccesful");
}
conv = sscanf(inp, "%lf %1s", &lowRadius, more); // conv is number of items scanned
if(conv != 1) {
err("One input value is required");
}
if(lowRadius < 0.0 || lowRadius > 40.0) {
err("Number out of range");
}
printf("%f\n", lowRadius);
return 0;
}

我不确定您对个位数的规定,因为这不允许输入最大值。

关于c - C 中的数据验证 - 确保输入格式正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37242890/

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