-1

前段时间你帮我读了一行。现在,我只想从输入中读取数字 - 没有字母,只有 5 位数字。我怎样才能做到这一点?

我的解决方案无法正常工作:

int i = 0; 
while(!go)
    {
        printf("Give 5 digits: \n\n");
        while( ( c = getchar()) != EOF  &&  c != '\n' &&  i < 5 )
        {
            int digit = c - '0';
            if(digit >= 0 && digit <= 9)
            {
                input[i++] = digit;
                if(i == 5)
                {
                    break;
                    go = true;
                }
            }
        }
    }
4

2 回答 2

2

有了break语句,go = true;就永远不会被执行。因此循环while (!go)是无限的。

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

int i = 0;
int input[5];

printf ("Give five digits: ");
fflush (stdout);

do
{
  c = getchar ();

  if (isdigit (c))
  {
    input[i] = c - '0';
    i = i + 1;
  }
} while (i < 5);
于 2013-01-23T15:18:17.183 回答
0

Try with this:

#include<stdio.h>
int main()
{
char  c;
        while( ( c = getchar()) != EOF  &&  c != '\n' &&  c >= 48  && c <= 57 )
        {
          printf("%c\n",c);
        }
return 0;
}
于 2013-01-23T15:25:39.243 回答