Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98084 向睿杰 03字符加密 C++ Accepted 1 MS 272 KB 159 2024-11-17 12:21:33

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; }