Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
117281 李亭绪 06字符后移 C++ Wrong Answer 1 MS 272 KB 393 2025-04-16 19:11:14

Tests(0/10):


Code:

#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() using namespace std; int main(){ char a,b,c,d; cin>>a>>b>>c>>d; cout<<(a+1-'a')%26+'a'<<' '<<(b+1-'a')%26+'a'<<' '<<(c+1-'a')%26+'a'<<' '<<(d+1-'a')%26+'a'; }


Run Info:

------Input------
c e p p
------Answer-----
d f q q
------Your output-----
100 102 113 113