int main() { char x; scanf("%c", &x); int ASCII = (int)x; cout << (x & 1 ? "YES" : "NO") << '\n'; return 0; }
正确
错误