Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95904 | 李浩宇 | 06字符后移 | C++ | Wrong Answer | 0 MS | 268 KB | 143 | 2024-11-02 14:38:47 |
#include<iostream> using namespace std; int main(){ char a,b; cin>>a>>b; cout<<a-97+1<<endl; cout<<b-97+1<<endl; }
------Input------
c e p p
------Answer-----
d f q q
------Your output-----
3 5