我正在跟随一本关于 C 的书来学习它,并且我正在编写书中的所有代码以继续学习,最新的与数组有关的代码应该说明有多少空格、制表符等。但是当我执行它,什么都没有出现,它只是空白,因为我可以输入一些东西然后按 Enter 并且没有任何反应,它应该告诉我每件事有多少吗?
我太新了,不明白这个程序是否真的应该输出任何东西,所以我想我会把它贴在这里并征求意见,它编译并运行良好,没有错误,但是这本书有点提到它输出东西,但是当我运行它并输入内容时没有任何反应,可以永远输入内容。
这是代码
#include <stdio.h>
int main()
{
int c, i, nwhite, nother;
int ndigit[10];
nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit[i] = 0;
while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c-'0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;
printf("digits =");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit[1]);
printf(", white space = %d, other = %d\n", nwhite, nother);
}