Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114610 周泽洋 03字符加密 C++ Accepted 1 MS 268 KB 160 2025-03-22 18:13:20

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