Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
128711 刘语晗 电文保密 C++ Compile Error 0 0 MS 0 KB 245 2024-01-26 09:01:53

Tests(0/0):


#include <bits/stdc++.h> using namespace std; int main() { char c; while((c=getchar())!='\n') { if((c>="a"&&c<="z") || (c>="A"&&c<="Z")) { c+=4; if(c>"Z"&&c<="Z"+4||c>"z") c-=26; } cout<<c; } cout<<endl; return 0; }


Judgement Protocol: