Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
33009 teacher_lu 奇偶ASCII值判断 C++ 通过 1 MS 236 KB 181 2023-12-04 19:19:12

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main(){ char c; cin >> c; int x = c; if(x % 2 == 1) { cout << "YES"; } else cout << "NO"; return 0; }


测评信息: