建议这位同学去看C语言的典型教材,C语言的创始人写的,他书上有第二道题的解答.
#include <stdio.h>
void f(int n);
int main ()
{
int c,i,nwhite=0,nother=0,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=='\n'||c=='\t'||c==' ')
++nwhite;
else
++nother;
printf("digits=");
for(i=0;i<10;i++)
printf(" %d",ndigit[i]);
printf(",white space=%d,other=%d\n",nwhite,nother);
system("pause");
}
这 是那本书上代码,我最近也在学