Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1660 邓小龙 03字符加密 C++ Accepted 0 MS 260 KB 161 2023-10-29 09:20:40

Tests(10/10):


Code:

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