我们要去输入一个四位正整数然后去判断输出
个位的话我们是要去%10,百位就要%100%10
下面是代码
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
if (n % 10 % 2 == 0 || n / 10 % 10 % 2 == 0 ||
n / 100 % 10 % 2 == 0 || n / 1000 % 2 == 0) {
cout << "YES" << endl;
} else {
cout << "NO" << endl;
}
return 0;
}