这道题太简单了吧,我不会有人不会做这题吧
2025-09-23 20:10:51
发布于:四川
0阅读
0回复
0点赞
太简单了,直接给大家上代码:
#include <iostream>
using namespace std;
int main(){
long long N;
cin>>N;
if(N>0)
cout<<"positive";
if(N==0)
cout<<"zero";
if(N<0)
cout<<"negative";
return 0;
}
这里空空如也
有帮助,赞一个