提交时间:2026-04-11 21:19:01
运行 ID: 436193
#include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 2 == 0) { cout << "偶数" << endl; } else { cout << "奇数" << endl; } return 0; }