C语言:任意输入10个字符,统计英文字母的个数(包括大小写),数字字符的个数和其它字符的个数并输出
C语言:任意输入10个字符,统计英文字母的个数(包括大小写),数字字符的个数和其它字符的个数并输出
日期:2018-12-31 22:45:03 人气:1
#include int main(){ int alpha,digit,others; char c; for(alpha=digit=others=0;(c=getchar())!='\n';) { if(c>='a'&&c='A'&&c='0'&&c<='9') digit++; else others++