找考题网-背景图
填空题

输入一个字符串,(换行为结束标志)统计数字(0~9不单独统计)、空白和其他字符出现的次数。 #include<stdio. h> main() {char C; int______;/*第一空*/ while((c=getchar())!=’\n’) {if(______)/*第二空*/ digit++; else if(c=="||c==’\t’)++blank; else______;/*第三空*/ } printf("digit=%d,blank=%d,other=%d",digit,blank,other); }

【参考答案】

digit=0,blank=0,other=0/*第一空。*/