提交时间:2023-03-10 15:06:05
运行 ID: 11352
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n>0){ cout<<"positive"; }else if(n<0){ cout<<"negative"; }else{ cout<<"zero"; } }