提交时间:2026-06-07 10:52:33

运行 ID: 443881

#include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 2 == 0) { cout << "偶数" << endl; } else { cout << "奇数" << endl; } return 0; }