Run ID:544

提交时间:2022-11-19 14:44:35

#include<iostream> using namespace std; int main(){ int temp; cin>>temp; if(temp>0) { cout<<"是正数"; } else{ cout<<"是负数"; } return 0; }