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