用户输出
How can you sleep at your age?
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#116958 | #1463. [L1-1] 你是否清醒 | Accepted | 100 | 22 ms | 372 K | C++ 17 (Clang) / 237 B | 15291309895 | 2025-04-21 23:19:28 |
#include <iostream>
using namespace std;
int x, y;
int main() {
cin >> x >> y;
if ((x == 16 && y >= 0) || (x < 8) || (x > 16))
cout << "Good morning!";
else
cout << "How can you sleep at your age?";
return 0;
}
用户输出
How can you sleep at your age?
系统信息
Exited with return code 0
用户输出
How can you sleep at your age?
系统信息
Exited with return code 0
用户输出
How can you sleep at your age?
系统信息
Exited with return code 0
用户输出
How can you sleep at your age?
系统信息
Exited with return code 0