Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117013 | 李茗宇 | 06字符后移 | C++ | Wrong Answer | 0 MS | 272 KB | 421 | 2025-04-13 13:17:49 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() #include<string> #include<sstream> using namespace std; int main() { string input; cin>>input; for(char&c:input){ c=(c-'a'+1)%26+'a'; } cout<<input; return 0; }
------Input------
c e p p
------Answer-----
d f q q
------Your output-----
d