其他分享
首页 > 其他分享> > 写出函数,输入字符串,统计字符数

写出函数,输入字符串,统计字符数

作者:互联网

#include<stdio.h>
#include<string.h>
#include<ctype.h>
int h=0,b=0,c=0,d=0,e=0;
//全局变量定义好 ,全局变量必须定义在预处理指令下,所有共用函数前面。
void sentence(char a[])
{
int n,i;
n=strlen(a);
for( i=0;i<n;i++)
{
if(a[i]==’ ')
{
h++;
}
else if(isupper(a[i])) //大写字母统计函数
{
b++;
}
else if(islower(a[i])) //小写字母统计函数
{
c++;
}
else if(isdigit(a[i])) //数字统计函数
{
d++;
}
else
{ e++;
}
}
}
int main()
{
char a[40];
printf(“请输入一个字符串:\n”); gets(a);
sentence(a);
printf(“各种类数目如下:\n数字=%d \n大写字母=%d \n小写字母=%d \n空格=%d \n其他=%d”,d,b,c,h,e);
return 0;
}

标签:字符,小写字母,函数,int,else,++,写出,字符串,include
来源: https://blog.csdn.net/weixin_65206066/article/details/122015535