Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106831 彭厚霖 03字符加密 C++ Accepted 1 MS 272 KB 158 2025-01-16 17:00:12

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl using namespace std; int main(){ char A; cin>>A; cout<<(char)((A-65+2)%26+65); return 0; }