Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3879 刘芃伽 06字符后移 C++ Accepted 0 MS 268 KB 274 2024-07-18 14:09:57

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; }