Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
152671 杨金卓 字符的前导值和后继值 C++ Accepted 1 MS 276 KB 309 2026-04-30 15:39:13

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char a,b,c; cin.get(a); b=a-1; c=a+1; if(b>=32&&b<=126){ cout<<int(b)<<endl; }else{ cout<<"Input Error!"<<endl; } if(c>=32&&c<=126){ cout<<int(c)<<endl; }else{ cout<<"Input Error!"; } return 0; }