答案

陈铎文  •  7个月前


#include<bits/stdc++.h> 
using namespace std; 
int main(){ 
char a; 
cin>>a; 
char s=((a-65)+2)%26+65; 
cout<<s; 
return 0; 


评论: