| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146488 | 王润中 | 09能否赴约 | C++ | Wrong Answer | 0 MS | 268 KB | 278 | 2026-01-29 10:23:16 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if(a=1) { cout<<"NO"; } else if(a=3) { cout<<"NO"; } else if(a=5) { cout<<"NO"; } else { cout<<"YES"; } }
------Input------
4
------Answer-----
YES
------Your output-----
NO