Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2571 | 孙浚轩 | 字符的前导值和后继值 | C++ | Wrong Answer | 0 MS | 264 KB | 202 | 2024-01-13 18:00:27 |
#include<iostream> using namespace std; int main(){ char ch; cin.get(ch); if(ch>=32&&ch<=126) cout<<ch-1<<endl<<ch+1; else cout<<"Input Error!"; return 0; }
------Input------
~
------Answer-----
125 Input Error!
------Your output-----
125 127