Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94352 谭思宸 03字符加密 C++ Presentation Error 1 MS 272 KB 193 2024-10-20 12:14:01

Tests(0/10):


Code:

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