提交时间:2023-01-18 12:30:18

运行 ID: 5823

#include<bits/stdc++.h> 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; }