| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145983 | 周润泽 | 参赛组别推荐 | C++ | Accepted | 0 MS | 272 KB | 335 | 2026-01-25 20:06:07 |
#include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; if(a<8){ cout<<"You are too young!"; }else if(a>=8&&a<=12){ cout<<"Welcome to Junior Class!"; }else if(a>=13&&a<=18){ cout<<"Welcome to Senior Class!"; }else{ cout<<"You are too old!"; } return 0; }