Run ID:134070
提交时间:2025-10-25 16:00:24
V\#include<bits/stdc++.h> using namespace std; int main(){ char c; c = getchar(); if(c<32){ cout<<"Input Error!"<<endl; } else if(c>32 && c<126){ cout<<c-1<<endl; } else if(c>126){ cout<<"Input Error!"<<endl; } else if(c>32 && c<126){ cout<<c+1<<endl; } }