Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
318177 | 李南笙 | 【C1-T】奇偶ASCII值判断 | C++ | Compile Error | 0 | 0 MS | 0 KB | 180 | 2025-04-18 20:20:07 |
#include<iostream> using namespace std; int main(){ char a; cin>>a; switch((int)a%2){ case 1: cout<<"YES"; default; cout<<"NO"; } return 0; }