练20.1 适合晨练吗
时间限制:C/C++ 1000MS,其他语言 2000MS
内存限制:C/C++ 64MB,其他语言 128M
输入温度t的值,判断是否适合晨练。(25≤t≤30,则适合晨练ok!,否则不适合no!)。
很简单的题目但是就是PA
帮我改一下
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
if(25<=t&&t<=30) cout<<"ok!";
else cout<<"no!";
return 0;
}