Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6208 | baodiyuan | 输入温度t的值,判断是否适合晨练 | C++ | 通过 | 0 MS | 276 KB | 199 | 2022-11-27 16:41:36 |
#include <iostream> using namespace std; int main(){ int t; cin>>t; if((t>=25)&&(t<=30)){ cout<<"ok!"<<endl; }else{ cout<<"no!"<<endl; } return 0; }