Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51583 | 张思存 | 奇偶数判断 | C++ | Wrong Answer | 0 MS | 240 KB | 183 | 2024-09-22 21:21:28 |
#include<bits/stdc++.h> using namespace std; int main() { int h; cin >> h; if(h%2==1){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }