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