75pts求条 wrong on #3
查看原帖
75pts求条 wrong on #3
1386033
xiozhi楼主2024/12/3 21:20

可互关哈谢谢了

#include<bits/stdc++.h>
using namespace std;
int main(){
	long long n;
	cin >> n;
	if(n == 0)
	cout << "zero";
	else if(n < 0)
	cout << "nagative";
	else if(n > 0)
	cout << "positive";
	return 0;
}
2024/12/3 21:20
加载中...