Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6049 张昊然 【基础题】晨练 C++ Accepted 2 MS 724 KB 205 2021-02-11 16:30:58

Tests(4/4):


Code:

#include <iostream> using namespace std; int main() { int t; cin >> t; if (t >= 25 && t <= 30) { cout << "ok!"; } else { cout << "no!"; } return 0; }