如何读取C中以空格分隔的0-9位数?

时间:2016-09-01 09:01:30

标签: c arrays io

我正在尝试在C中创建一个读取空格分隔的正数的程序,并向任何其他输入格式提供错误消息。

例如,以下输入是正确的:

0 1 2 3 4 5 6 7 8 9
9 8 7 6 5 4 3 2 1 0
7 6 5 4 3
1 2 3
...

对于所有其他输入,程序应终止并应打印错误消息。例如:

0 1,2 3 4-5 67 89
0123456789
0a2b3c4d5e6f7g8h9i
...

这是我的尝试:

...
int inputArr[999];
int length = 0;
char c = getchar();

while ( c != '\n' ) {
    if ( isdigit(c) ) {
        inputArr[length] = c - '0';
        length++;
    } else {
        printf ("Wrong Input Format!\n");
    }
    c = getchar();
    if ( c != ' ' ) {
        printf ("Wrong Input Format!\n");
    } else {
        continue;
    }
}
...

但即使输入正确,也会出现错误消息。

更新

当我输入以下内容时:

0 1 2 3 4 5 6 7 8 9

我希望程序不要给我任何错误消息,但我收到10条错误消息(删除行exit(1);后)。我假设它是1之后的每个字符的一条错误消息(即9条消息)和1条消息,用于' \ n'最后的角色。

2 个答案:

答案 0 :(得分:2)

试试这个:

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

void e() { puts("Bad input."); exit(EXIT_FAILURE); }

int main(void)
{
    for (int c1 = 0, c2 = 0; c1 != EOF && c2 != EOF; )
    {
        c1 = getchar();
        if (c1 == EOF || c1 == '\n') continue;   // file or line ends in "x "
        if (!isdigit(c1)) e();

        c2 = getchar();
        if (c2 != EOF && c2 != '\n' && c2 != ' ') e();

        printf("Got input: '%c'.\n", c1);
    }
}

此版本允许在行尾添加尾随空格。如果想要允许尾随空格(即"1 2"没有问题,但"1 2 "是错误的),请将第一个条件更改为:

if (c1 == EOF || c1 == '\n' || !isdigit(c1)) e();

答案 1 :(得分:1)

可以使用标志来指示何时读取数字并防止连续数字。连续的空间不会被拒绝。

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

int main( void)
{
    int inputArr[999];
    int c = 0;
    int length = 0;
    int gotdigit = 0;

    while ( ( c = getchar ( )) != '\n' && c != EOF) {
        if ( isdigit ( c) && !gotdigit) {//found digit and no prior consecutive digit
            inputArr[length] = c - '0';
            length++;
            if ( length >= 999) {
                break;
            }
            gotdigit = 1;//set true to prevent consecutive digits
        } else {
            if ( c == ' ') {
                gotdigit = 0;//set false. found space so next digit is ok
            }
            else {//not a space or was consecutive digit
                printf ("Wrong Input Format!\n");
            }
        }
    }

    return 0;
}