Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
31593 | 闻航 | 奇偶ASCII值判断 | C++ | Wrong Answer | 0 MS | 244 KB | 167 | 2023-11-19 19:04:20 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if(a%2==1) cout<<"YES"; else cout<<"NO"; return 0; }