Good morning
问题描述
一天,小马在A点过B分准时起床(24小时制),而小亮在C点过D分1秒准时起床。
输入
输入4个整数A,B,C,D
0≤A≤23
0≤B≤59
0≤C≤23
0≤D≤59
所有都为整数
输出
如果小马先起床输出'fwhnb',否则输出'qlnb'。(不包含引号)
输入例子 1 输出例子 1
10 23 8 0 qlnb
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d;cin>>a>>b>>c>>d; if (a<c || (a==c&&b<=d)) cout<<"fwhnb"; else cout<<"qlnb"; }标签:输出,Good,OJ,周赛,int,23,起床,morning From: https://www.cnblogs.com/hihopkc/p/16844487.html