题解
2023-01-12 14:34:25
发布于:江苏
21阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n;
cin >> n;
if(n==0){
cout << "zero" << endl;
}
else if(n<0){
cout << "negative" << endl;
}
else{
cout << "positive" << endl;
}
return 0;
}
记得关注!
这里空空如也
有帮助,赞一个