| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72651 | sh25_zhuwy | 奇偶数判断 | C++ | Accepted | 0 MS | 248 KB | 166 | 2025-11-02 13:40:25 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%2==1) { cout<<"odd"; } else { cout<<"even"; } return 0; }