include <stdio.h> int main(){ int m1=0,m2=0,m3=0,m4=0;char c;while ((c=getchar())!='\n'){if (c>='A'&&c<='Z'||c>='a'&&c<='z')m1++;else if(c>='0'&&c<='9')m2++;else if(c==' ')m3++;else m4++;} printf("m1=%d,m2=%d,m3=%d,m4=%d\n",m...
include <stdio.h> int main(){ int letter=0,space=0,digit=0,others=0;char c;while((c=getchar())!='\n'){ if(c==' ')space++;else if(c>='1'&&c<='9')digit++;else if((c>='a'&&c<='z')||c>='A'&&c<='Z')letter++;else others++;} printf("The number of...
space); printf("The number of digits is:%d\n",digit)
简答题 输入一行字符,以回车结束,分别统计其中出现的大写英文字母、小写英文字母、数字字符、空格和其他字符出现的次数。 【参考答案】