Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89425 | 徐文杰 | 06字符后移 | C++ | Wrong Answer | 1 MS | 268 KB | 183 | 2024-08-24 15:02:34 |
#include<iostream> using namespace std; int main(){ char a,s,d,f; cin>>a>>s>>d>>f; a=a+1; s=s+1; d=d+1; f=f+1; cout<<a<<" "<<s<<" "<<d<<" "<<f; }
------Input------
m c s z
------Answer-----
n d t a
------Your output-----
n d t {