题解
2024-03-25 20:53:15
发布于:上海
3阅读
0回复
0点赞
#include <iostream>
int main() {
int N;
std::cin >> N; // 读取输入的整数N
if (N > 0) {
std::cout << "positive" << std::endl; // 如果N大于0,输出positive
} else if (N == 0) {
std::cout << "zero" << std::endl; // 如果N等于0,输出zero
} else {
std::cout << "negative" << std::endl; // 如果N小于0,输出negative
}
return 0;
}
这里空空如也
有帮助,赞一个