Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95928 李昊宇 06字符后移 C++ Accepted 1 MS 280 KB 273 2024-11-02 14:50:30

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ char a1,a2,a3,a4; cin>>a1>>a2>>a3>>a4; cout<<char((a1+1-97)%26+97)<<" "; cout<<char((a2+1-97)%26+97)<<" "; cout<<char((a3+1-97)%26+97)<<" "; cout<<char((a4+1-97)%26+97)<<" "; return 0; }