Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130682 郑羽辰 03字符加密 C++ Accepted 2 MS 280 KB 154 2025-09-14 16:55:03

Tests(10/10):


Code:

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