题解
2023-06-27 19:38:42
发布于:上海
32阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
if(a*60+b+45<=480){
cout << "on time";
}else{
cout << "late";
}
return 0;
}
这里空空如也
有帮助,赞一个