----------------解决方案--------------------------------------------------------
看来好多人都在用谭浩强的《C语言程序设计》
----------------解决方案--------------------------------------------------------
既然那么多答案了,我就不出手啦,哈哈,混会水.
----------------解决方案--------------------------------------------------------
呵呵 作业题
我当年学C的时候也作过
----------------解决方案--------------------------------------------------------
谢谢大家热心帮助!
----------------解决方案--------------------------------------------------------
建议这位同学去看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");
}
这 是那本书上代码,我最近也在学
----------------解决方案--------------------------------------------------------
多谢
----------------解决方案--------------------------------------------------------