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