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