Printf不打印输出

时间:2014-02-08 15:35:37

标签: c++ c

为什么此程序不打印任何输出。

#include<stdio.h>

int main()
{
    int c, i, nwhite, nother;
    nwhite = nother = 0;
    int ndigit[10];

    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;

    for(i=0; i<10; ++i)
        printf("%d\n",ndigit[i]);
    printf("%d - %d", nwhite, nother);
}

输入:继续输入到EOF。

1 个答案:

答案 0 :(得分:1)

试试这个:

for(i=0; i<10; ++i)
        printf("%i\n",ndigit[i]);
    printf("%i - %i", nwhite, nother);