Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
39378 | fuhaoze | 奇偶数判断 | C++ | Wrong Answer | 1 MS | 248 KB | 148 | 2024-02-01 14:23:41 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n%2==0){ cout<<"odd"; } else{ cout<<"even"; } return 0; }