-1

这是我的代码中的一个函数,我确信计数循环是导致我的程序中断的原因。

第一个打印语句将返回代码中前面设置的数字,但它从不打印下一个打印语句hello

我不知道为什么它不起作用。有人能帮我吗?

//Function Declaration
int calc_digits(int number)
{
 //Local Declaration
  int count = 0; // the times the loop has ran

  printf("%d", number);
  fflush(stdout);

  while (number != 0);
   {
     number /=  10;
     count++;
   }
 printf("hello");
 fflush(stdout);
 return(count);
}
4

1 回答 1

9

这是错误:

while (number != 0);

你的while循环在这里结束:-)

;您应该从此行中删除。

于 2013-03-24T18:19:43.130 回答