题解
2024-08-05 17:56:39
发布于:广东
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
if(n>0)
cout<<"positive";
else if(n<0)
cout<<"negative";
else
cout<<"zero";
return 0;
}
这里空空如也
有帮助,赞一个