gpt4 book ai didi

c - 如何在c中验证用户输入?

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

我想知道你如何在c中验证用户输入,我需要用户输入坐标,一个(1-8)中的整数,由(1-8)中的另一个整数分隔,例如“1,1” 。我想知道我是否可以使用 strtok() 或 strtol() 来做到这一点?

最佳答案

如果输入格式固定,使用fgets()获取一行输入然后sscanf()解析输入比使用fgets()解析输入要简单得多使用 strtok()strtol()

以下示例验证用户输入 [1, 8] 范围内的两个整数。如果用户输入的值少于两个,或者值超出范围,或者在接受的值之后有额外的输入,系统会提示用户输入另一对坐标。

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

int main(void)
{
char buffer[100];
int x, y;

/* sscanf() method: input must be comma-separated, with optional spaces */
printf("Enter a pair of coordinates (x, y): ");
if (fgets(buffer, sizeof buffer, stdin) == NULL) {
perror("Input error");
exit(EXIT_FAILURE);
}

int ret_val;
char end;
while ((ret_val = sscanf(buffer, "%d , %d%c", &x, &y, &end)) != 3
|| x < 1
|| x > 8
|| y < 1
|| y > 8
|| end != '\n') {
printf("Please enter two coordinates (x, y) in the range [1, 8]: ");
if (fgets(buffer, sizeof buffer, stdin) == NULL) {
perror("Input error");
exit(EXIT_FAILURE);
}
}

printf("You entered (%d, %d).\n", x, y);

return 0;
}

关于c - 如何在c中验证用户输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45608039/

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