AC题解:上学问题。
2024-08-10 20:25:31
发布于:北京
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
//字符串类型:string,数字类型:int,long long,字符类型:char,小数类型:double,float
long long x,y;
string a="late",b="on time"
cin>>x>>y;
if(x*60+y+45<=480)
cout<<b;
else
cout<<a;
}
这里空空如也
有帮助,赞一个