题解
2023-08-14 07:21:56
发布于:四川
13阅读
0回复
0点赞
字符串垃圾简单题
就是扫一遍的事情,不就没了吗。
如果你看不懂,就在输入的后面变一下大小写。
代码:
#include <iostream>
using namespace std;
int main(){
string str;
cin >> str;
if (str[0]>='a'){
str[0]-='a'-'A';
}
char c=str[0];
int cnt=0;
for (auto &item : str){
if (item>='a'){
item-='a'-'A';
}
if (item==c){
++cnt;
}else{
printf("(%c,%d)",c,cnt);
c=item;
cnt=1;
}
}
printf("(%c,%d)\n",c,cnt);
return 0;
}
这里空空如也
有帮助,赞一个