#include<bits/stdc++.h> using namespace std; int main() { int x; cin>>x; if(x > 0) { cout<<"positive"; } else { if(x == 0) { cout<<"zero"; } else { cout<<"negative"; } } return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; if (a>0) {cout<<"positive";} if (a==0) {cout<<"zero";} if (a<0) {cout<<"negative";} return 0; }
注册一个 HydroOJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 HydroOJ 通用账户