C语⾔:统计字符个数及种类#include <stdio.h>
int main(){
char c; //⽤户输⼊的字符
int shu=0;//字符总数
int letters=0, // 字母数⽬
space=0, // 空格数⽬
digit=0, // 整数数⽬
others=0; // 其他字符数⽬
printf("输⼊⼀些字符:");
while((c=getchar())!='\n'){ // 每次读取⼀个字符,回车时结束
c语言字符常量有哪些if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters++;
else if(c=='')
space++;
else if(c>='0'&&c<='9')
digit++;
else
others++;
shu++;
}
printf("\n统计结果:\n字符总数=%d\n英⽂字母=%d\n空格=%d\n整数=%d\n其他字符=%d\n\n", shu,letters, space, digit, others); return0;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论