输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。输入输出示例:括号内是说明输入Reold123?输出 letter = 5, blank = 1, digit = 3, other = 1 #include int main(void) { char c; int blank, digit, i, letter, other; blank = digit =letter = other = O; for(i=1;i...
char c;int letter=0,space=0,digit=0,other=0;printf("i请输入10个字符:\n");while((c=getchar( ))!='\n') /*读取当前字符,如不为回车符则进行统计*/ { if(c>='a' &&c<='z'||c>='A'&&c<='Z')letter++;else if(c==' ')space++;else if(c>='0'&&c<='9')...
else if(c>='0'&&c<='8')改成else if(c>='0'&&c<='9')
1C语言题目 帮忙解答下3.程序填空,不要改变与输入输出有关的语句。输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。输入输出示例:括号内是说明输入 Reold 123? 输出 letter = 5, blank = 1, digit = 3, other = 1 #include int main(void) { char c; int blank, digit, i,...