Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98086 李明秦 03字符加密 C++ Accepted 1 MS 276 KB 144 2024-11-17 12:21:43

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { char c1; int n=2; cin>>c1; char c2=((c1-65)+n)%26+65; cout<<c2; return 0; }