Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131181 万麟峰 09能否赴约 C++ Wrong Answer 1 MS 264 KB 198 2025-09-21 12:22:44

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; switch(a){ case 1: case 3: case 5: cout<<"no"; break; default: cout<<"yes"; } return 0; }


Run Info:

------Input------
4
------Answer-----
YES
------Your output-----
yes