从键盘输入若于个字符,分别统计其中字母、空格、数字字符和其他字符的个数。

admin2017-10-26  27

问题 从键盘输入若于个字符,分别统计其中字母、空格、数字字符和其他字符的个数。

选项

答案#include main() {char c; int letters=0,space=0,digit=0,others=0; printf("please input some charactets\n"); while((c=getchar())!=’n’) {if(c>=’a’&&c<=’z’||c>=’A’&&<=’Z’) letters++; else if(c==’’) space++; else if(c>=’0’&&c<=’9’) digit++; else others++; } printf("all in all=char=%d space=%d digit=%d others=%d\n",letters,space,digit,others); } 31.

解析
转载请注明原文地址:https://kaotiyun.com/show/onkx777K
0

最新回复(0)