输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数

日期:2019-06-24 17:45:28 人气:1

输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数

#include int main() { char c; int letters=0,spaces=0,digits=0,others=0; printf("请输入一串任意的字符:\n"); while((c=getchar())!='\n') { if((c>='a'&&c='A'&&c<='Z')) letters++; else if(c>='0'&&c<=&
    A+
热门评论