#include <bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x; if(x>0){ y=x+1; }else if(x<0){ y=x-1; }else{ y=0; } cout<<y; return 0; }
#include<bits/stdc++.h> int main(){ int x,y; scanf("%d",&x); if(x<=30000&&x>0){ y=x+1; } if(x==0){ y=0; } if(x>=-30000&&x<0){ y=x-1; } printf("%d",y); }
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; cout<<x+(x>0)-(x<0); return 0; }
注册一个 Hydro 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 Hydro 通用账户