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