Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6564 yuyang 输入温度t的值,判断是否适合晨练 C++ 解答错误 1 MS 288 KB 176 2022-12-04 15:36:39

Tests(0/2):


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


测评信息: