Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89097 蔡佳轩 03字符加密 C++ Compile Error 0 MS 0 KB 128 2024-08-22 14:55:37

Tests(0/0):


Code:

#include <iostream> using namespace std; int main(){ char a; int n; cin>>a>>n; cout<<(a+n-'A')%26+'A' }


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:1: error: expected ';' before '}' token
 }
 ^