Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93034 | 吴彦晓 | 参赛组别推荐 | C++ | Compile Error | 0 MS | 0 KB | 301 | 2024-10-07 15:57:39 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<8){ cout<<"You are too young!"; }else if(n>=8 && n<=12){ cout<<"Welcome to Junior Class!"; }else if(n>13 && n>=18){ cout<<"Welcome to Senior Class!"; }else(n>19){ cout<<"You are too old!" } }
Main.cc: In function 'int main()': Main.cc:12:13: error: expected ';' before '{' token }else(n>19){ ^