Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
58130 冯纪尧 【基础题】晨练 C++ Accepted 3 MS 272 KB 144 2023-09-23 16:16:11

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!"; } }