c - while 循环陷入无限循环,我不知道为什么

标签 c while-loop infinite-loop

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

int main(int argc, char * argv[])
{
   printf("This program tests your integer arithmetic skills.\n"
          "You should answer the questions following the same \n"
          "rules that computers do for integers arithmetic, not \n"
          "floating-point arithmetic. Hit the 'Enter' key after \n"
          "you have typed in your input. When you wish to finish \n"
          "the test, enter -9876 as the answer to a question.\n"
          "\n");

   int n1, n2, answer, user_answer, a, b, int_per;
   char op, c;
   float per, count, count_r, count_w;

   count = 0;
   count_r = 0;
   count_w = 0;

   printf("What is your question? ");
   scanf("%d %c %d", &n1, &op, &n2);


   do
   {
      count++;

      printf("What is %d %c %d ? ", n1, op, n2);

      if (op == '+')
      {
         answer = n1 + n2;
      }
      else if (op == '-')
      {
         answer = n1 - n2;
      }
      else if (op == '%')
      {
         answer = n1 % n2;
      }
      else if (op == '/')
      {
         answer = n1 / n2;
      }
      else if (op == '*')
      {
         answer = n1 * n2;
      }

      c = scanf("%d", &user_answer);

      if (user_answer == answer)
      {
         printf("Correct!\n\n");
         count_r++;

      }
      else if (user_answer == -9876)
      {
         count = count - 1;
         break;  
      }
      else if (c != 1)
      {
         printf("Invalid input, it must be just a number\n\n");
         printf("What is %d %c %d ? ", n1, op, n2);
      }
      else if (user_answer != answer)
      {
         printf("Wrong!\n\n");
         count_w++;
      }

   } while(user_answer != -9876);

   per = (count_r / count) * 100;

   a = (int) count_r;
   b = (int) count_w;
   int_per = roundf(per);

   printf("\nYou got %d right and %d wrong, for a score of %d%c\n", a,
          b, int_per, 37);

   return EXIT_SUCCESS;

}

上面的代码应该循环询问问题,然后循环回答,直到用户输入 -9876 作为答案,然后程序终止并给他们分数。这一切都有效,除了!!一方面。当用户在输入中输入非数字时。发生这种情况时,应该会说“输入无效,请重试”,然后再次询问相同的问题。例如

你的问题是什么? 9+9

9+9是什么? 嗯,8

输入错误,请重试

9+9是什么?

所以..用户输入“hmmm”,而不是再次提示用户相同的问题然后正确扫描,它只是跳入无限循环。我想知道如何解决这个问题。

谢谢

最佳答案

通话中

c = scanf("%d", &user_answer);

%d 转换说明符期望看到十进制数字字符序列;它会告诉 scanf 跳过任何前导空格,然后读取十进制数字字符直至第一个非十进制数字字符,然后转换结果并将其保存到 user_answer。如果您输入 12aEnterscanf 将读取并使用'1''2' 字符,将值 12 分配给 user_answer 并返回 1(对于一个成功的转换和赋值)将 'a' 和换行符留在输入流中。

当您输入 "hmmm" 时,第一个非空白字符不是十进制数字,因此 scanf 将其保留在原处,不会将任何内容分配给 user_answer,并返回0。所有剩余的带有 "%d" 转换说明符的 scanf 调用都会做同样的事情。

因此,您需要确保 scanf 成功,如果没有,请在进行另一次读取之前清除输入流中的所有字符,如下所示:

if ( (c = scanf( "%d", &user_answer ) ) == 0 )
{
  /**
   * input matching failure, clear stray characters from input stream
   * up to the next newline character
   */
  while ( getchar() != '\n' )
    ; // empty loop 
}
else if ( c == EOF )
{
  // error occurred during input operation
}
else
{
  // do something with user_answer
}

您会注意到在我的第一个示例中,%d 转换说明符接受输入"12a";它转换并将 12 分配给 user_answer,将 'a' 字符留在输入流中,从而影响下一次读取。理想情况下,您希望完全拒绝这种格式错误的输入。您可以执行如下操作:

/**
 * Repeatedly prompt and read input until we get a valid decimal string
 */
for( ;; ) 
{
  int c, dummy;
  printf("What is %d %c %d ? ", n1, op, n2);

  if ( ( c = scanf("%d%c", &user_answer, &dummy ) == 2 )
  {
    /**
     * If the character immediately following our numeric input is
     * whitespace, then we have a good input, break out of the read loop
     */
    if ( isspace( dummy ) )
      break;
    else
    {
      fprintf( stderr, "Non-numeric character follows input, try again...\n" );
      while ( getchar() != '\n' )
        ; // empty loop body
    }
  }
  else if ( c == 1 )
  {
    /**
     * No character following successful decimal input, meaning we
     * hit an EOF condition before any trailing characters were seen.  
     * We'll consider this a good input for our purposes and break
     * out of the read loop.
     */
    break;
  }
  else if ( c == 0 )
  {
    /**
     * User typed in one or more non-digit characters; reject the input
     * and clear out the input stream
     */
    fprintf( stderr, "Non-numeric input\n" );

    /**
     * Consume characters from the input stream until we see a newline.
     */
    while ( ( getchar() != '\n' )
      ; // empty loop body
  }
  else
  {
    /**
     * Input error or EOF on read; we'll treat this as a fatal
     * error and bail out completely.
     */
    fprintf( stderr, "Error occurred during read, panicking...\n" );
    exit( 0 );
  }
}

另一种选择是将输入作为文本读取,然后使用 strtol 库函数将其转换为结果类型:

for ( ;; )
{
  char input[SIZE]; // for some reasonable SIZE value, at least 12 to handle
                    // a 32-bit int (up to 10 digits plus sign plus
                    // string terminator

  printf("What is %d %c %d ? ", n1, op, n2);
  if ( fgets( input, sizeof input, stdin ) )
  {
    char *check; // will point to first non-digit character in input buffer
    int tmp = (int) strtol( input, &check, 10 );
    if ( isspace( *check ) || *check == 0 )
    {
      user_answer = tmp;
      break;
    }
    else
    {
      fprintf( stderr, "%s is not a valid input, try again\n", input );
    }
  }
  else
  {
    /** 
     * error or EOF on input, treat this as a fatal error and bail
     */
    fprintf( stderr, "EOF or error while reading input, exiting...\n" );
    exit( 0 );
  }
}

这是我首选的方法。

这些困惑中的任何一个都会取代该行

c = scanf("%d", &user_answer);

读完所有内容后,您可能会想,“C 语言中的交互式输入确实是一件令人头疼的事情”。你是对的。

关于c - while 循环陷入无限循环,我不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32745406/

相关文章:

c - 用户在单行中输入的每个字符的错误消息输出?

计算文本文件中出现的所有字符

arrays - 如何从数组中获取所有数据并将其存储在新变量或常量中?

c - 链接两个具有相同函数签名的 lib 文件?

c - 如何从 C 中的二维数组中删除一行?

c - 管道实现中的错误,我面临这个错误,ls : write error: Bad file descriptor

prolog - 英语无约束语法序言

c - 是 while(1); C 中未定义的行为?

javascript - 如何在jquery上循环一个数组

c++ - -fno-strict-aliasing 的性能影响