Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101913 | 黄雨婷 | 06字符后移 | C++ | Accepted | 1 MS | 276 KB | 316 | 2024-12-20 21:56:13 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ char a,b,c,d,e,f,g,h; cin>>a>>b>>c>>d; e=((a+1)-96)%26+96; f=((b+1)-96)%26+96; g=((c+1)-96)%26+96; h=((d+1)-96)%26+96; cout<<e<<" "<<f<<" "<<g<<" "<<h; return 0; }