#include<stdio.h>
int main()
{
char ch;
int word=0,space=0,number=0,others=0;
printf("请输入一串字符");
while ((ch=getchar())!='\n')
{
if((ch>='A'&&ch<='Z')||(ch>='a'&&ch<='z'))
word=word+1;
else if(ch==' ')
space=space+1;
else if((ch>='0'&&ch<='9'))
number=number+1;
else
others=others+1;
}
printf("英文字母=%d,空格=%d,数字字符=%d,其他字符=%d",word,space,number,others);
return 0;
}
C语言程序代码 24计算字符串中各种字符的个数
最新推荐文章于 2022-10-19 07:55:55 发布