[求助]关于程序测试(编译器)
大家新年好,请教一个问题比如我想测试下面这个程序:大家只看题目就好了,代码细节不重要~
/* 统计各个数字、空白符及其他字符出现的次数 */
#include <stdio.h>
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);
}
一般测试其他程序,只要输入好内容按回车就能看到结果了,可是现在这道代码在输入的时候键入回车并不能结束程序,所以我就不知道该怎么查看运行结果了。请问该怎么办呢?