Run ID:121279

提交时间:2025-06-07 10:27:31

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