| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76961 | sh25_zhangzh | 奇偶数判断 | C++ | Accepted | 0 MS | 240 KB | 185 | 2025-12-20 21:08:07 |
#include <iostream> using namespace std; int main() { int a; cin>>a; if(a%2==0) { cout<<"even"; } else { cout<<"odd"; } }