提交时间:2024-11-07 21:38:30

运行 ID: 55513

#include<iostream> using namespace std; int main(){ int n; cin>>n; switch(n){ case 1: cout<<"positive"; break; case 0: cout<<"zero"; break; default: cout<<"negative"; } return 0; }