0
已采纳
颜咏春
中级光能
中级光能
核心:{
1.循环统计
for(int i=0;i<strlen(a);i++)
2。统计小写个数
if(a[i]>='a'&&a[i]<='z') c++;
3.统计大写个数
else if(a[i]>='A'&&a[i]<='Z') b++;
}
提示:
1.头文件
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
2.定义时注意
b=0;
c=0;
3.定义时注意
char[235];
望采纳
0