Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7033 | 赖梓乐 | 07判断奇数 | C++ | Wrong Answer | 0 MS | 252 KB | 204 | 2025-03-29 21:00:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%2==1){ cout<<"no"; } else{ cout<<"yes"; } return 0; }
------Input------
58
------Answer-----
No
------Your output-----
yes