问题标题: 只因

0
0
已解决
崔皓博
崔皓博
新手光能
新手光能

#include<iostream>
#include<string>
using namespace std;
int b;
string a;
int main(){
    cin>>b;
    getline(cin,a);
    for(int i=1;i<=b;i++){
        getline(cin,a);
        for(int j=0;j<a.size();j++){
            if(a[j]>='A'&&a[j]<='Y'||a[j]>='a'&&a[j]<='y'){
                a[j]+=1;
            }else if(a[j]=='Z'||a[j]=='z'){
                a[j]-=25;
            }
        }
        cout<<a<<endl;
    }
    return 0;
}


0
我要回答