我最近购买了 The C 编程语言,并且一直在慢慢地阅读文本,以确保我理解了所有内容。我遇到了这个数组示例(第 1.6 章),由于 Stack Overflow 上已经回答了许多问题,我完全理解了这个示例。
问题是当我运行程序时,什么都没有打印出来。这本书有一个习惯,有时让人觉得不聪明,所以如果这是一个菜鸟问题,我提前道歉。我向你保证,我已经寻找了很长一段时间的答案。
这是文本中的代码。我正在使用 XCode 4:
#include <stdio.h>
/* count digits, white space, others */
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[i]);
printf(", white space = %d, other = %d\n", nwhite, nother);
}
为什么不运行??