| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146071 | 张奕杨 | 参赛组别推荐 | C++ | Accepted | 0 MS | 276 KB | 285 | 2026-01-25 20:32:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a<8) cout<<"You are too young!"; else if(a<13) cout<<"Welcome to Junior Class!"; else if(a<19) cout<<"Welcome to Senior Class!"; else cout<<"You are too old!"; return 0; }