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;
}

上一篇:[论文笔记]SDM: Sequential Deep Matching Model for Online Large-scale Recommender System


下一篇:论文分享——recommender system survey