Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5081 刘芃伽 06字符后移 C++ Accepted 0 MS 264 KB 274 2024-11-02 10:13:28

Tests(10/10):


Code:

# include<iostream> using namespace std; int main() { char c1,c2,c3,c4; cin>>c1>>c2>>c3>>c4; cout<<char((c1-97+1)%26+97)<<' '; cout<<char((c2-97+1)%26+97)<<' '; cout<<char((c3-97+1)%26+97)<<' '; cout<<char((c4-97+1)%26+97); return 0; }