AC代码 仅限C++
#include<bits/stdc++.h> using namespace std; int main() { char a; cin>>a; if(int(a)%2) cout<<"YES"; else cout<<"NO"; return 0; }