Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88266 | 倪士燊 | 字符的前导值和后继值 | C++ | Accepted | 1 MS | 268 KB | 334 | 2024-08-19 10:14:07 |
#include<bits/stdc++.h> using namespace std; int main(){ char c; scanf("%c",&c); if(c-1 >= 32 && c-1 <= 126) { cout << c-1 << endl; } else { cout << "Input Error!" << endl; } if(c+1 >= 32 && c+1 <= 126) { cout << c+1 << endl; } else { cout << "Input Error!" << endl; } return 0; }