题解:#12.判断数字的正负 审核通过

ttcai666 2024-10-09 19:17:09 15

这一道题直接判断就行了 如果 n>0,输出 positive;如果n=0 ,输出 zero;如果 n<0,输出 negative。

最后给代码

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