#46041: 蛤~!@


chen971023@gmail.com (ZiaynGZiyaNG)

學校 : 國立臺南第二高級中學
編號 : 291750
來源 : [1.172.123.126]
最後登入時間 :
2025-05-12 19:07:06
e976. Will You Make it? -- HP CodeWars2019改編 | From: [1.172.123.126] | 發表日期 : 2025-05-12 18:54

#include <iostream>

using namespace std;

int main()

{

int h, m, s;

while (cin >> h >> m >> s)

{

if (s * h >= m)

{

cout << h << " " << m << " " << s << ". I will make it!" << "\n";

}

else

{

cout << h << " " << m << " " << s << ". I will be late!" << "\n";

}

}

}

 
ZeroJudge Forum