「CFgym100514R」6227020800
题解
恺撒密码。。。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include<iostream> #include<cstdio> #include<algorithm> #include<cmath> #include<cstdlib> #include<cstring> using namespace std; string s; int main() { cin>>s; int t=s.length(); for(int i=0;i<t;i++) printf("%c",(s[i]-'a'+13)%26+'a'); return 0; } |
Subscribe