Run ID:155875

提交时间:2026-06-14 12:24:10

#include<bits/stdc++.h> using namespace std; int main(){ char s[81]; cin.getline(s,81); for(int i=0;i<strlen(s);i++){ if(s[i]=='Z'||s[i]=='z')s[i]-=25; else if((s[i]<'Z'&&s[i]>'A')||(s[i]<'z'&&s[i]>'a'))s[i]+=1; } for(int i=0;i<strlen(s);i++)cout<<s[i]; return 0; }