Run ID:6049
提交时间:2021-02-11 16:30:58
#include <iostream> using namespace std; int main() { int t; cin >> t; if (t >= 25 && t <= 30) { cout << "ok!"; } else { cout << "no!"; } return 0; }