Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100332 贾雨泽 09能否赴约 C++ Compile Error 0 MS 0 KB 237 2024-12-07 14:48:17

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a; cin>>a; switch(a){ case 1: case 3: case 5: cout<<"NO"; break; default: //其他 cout<<"YES"; break; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:16:1: error: expected '}' at end of input
 }
 ^