统计字符 + 字符串计算
2023-07-26 09:48:54
发布于:浙江
7阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char str[114514];
gets(str);
int letters=0,digits=0,others=0;
for(int i=0;i<strlen(str)-1;i++){
if(str[i]>='a' and str[i]<='z'){
letters++;
}
else if(str[i]>='0' and str[i]<='9'){
digits++;
}
else{
others++;
}
}
cout<<"Letters="<<letters;
cout<<endl<<"Digits="<<digits;
cout<<endl<<"Others="<<others;
return 0;
}
这里空空如也
有帮助,赞一个