传送门:http://acm.hdu.edu.cn/contests/contest_showproblem.php?pid=1005&cid=856
#include<iostream> using namespace std; int main() { int T; cin>>T; while(T--) { string a; cin>>a; int len=a.length(); int b; for(int i=0;i<len;i++) { if(a[i]==‘y‘) { continue; } else { b=i; break; } } if(a[b]==‘z‘) { a[b]=‘b‘; } cout<<a<<endl; } }
原文地址:https://www.cnblogs.com/dragondragon/p/11380140.html
时间: 2024-10-16 21:50:20