本题目要求读入1个正整数n,然后输出它的奇偶性。
时间: 2023-05-12 17:06:25 浏览: 75
判断奇偶数输出
好的,我可以回答这个问题。以下是代码示例:
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
if (n % 2 == 0) {
cout << "偶数" << endl;
} else {
cout << "奇数" << endl;
}
return 0;
}
希望这个代码可以帮到你!
阅读全文