其他分享
首页 > 其他分享> > 1039:判断数正负

1039:判断数正负

作者:互联网

给定一个整数NN,判断其正负。如果N>0N>0,输出positive;如果N=0N=0,输出zero;如果N<0N<0,输出negative

#include <iostream>
using namespace std;
int main()
{   
   int N;
   cin>>N;
   if(N>0)
   cout<<"positive";
   if(N==0)
   cout<<"zero";
   if(N<0)
   cout<<"negative";
    return 0;
}

标签:输出,判断,cout,int,zero,1039,正负,0N
来源: https://blog.csdn.net/weixin_62802660/article/details/122341139