提交时间:2024-03-30 10:16:17

运行 ID: 44369

#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n>0){ cout<<"positive"; }else if(n=0){ cout<<"zero"; } else{ cout<<"negative"; } }