Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142512 李铭洋 03字符加密 C++ Accepted 0 MS 272 KB 176 2026-01-10 20:03:09

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main() { char a; cin>>a; if(a<'Y') { a=a+2; } else { a=a-24; } cout<<a; return 0; }