標題:
d669 Alarm Clock
[打印本頁]
作者:
李知易
時間:
2024-12-18 17:42
標題:
d669 Alarm Clock
本帖最後由 李知易 於 2024-12-18 17:44 編輯
d669. 11677 - Alarm Clock
本帖隱藏的內容需要回復才可以瀏覽
作者:
洪承廷
時間:
2024-12-19 23:25
#include<bits/stdc++.h>
using namespace std;
int main()
{
int h1,m1,h2,m2;
while(cin>>h1>>m1>>h2>>m2)
{
int total=0;
if(h1==m1==h2==m2==0)
break;
else if(h2<h1)
{
h2+=24;
total+=(h2-h1)*60;
}
else if(h2>=h1)
total+=(h2-h1)*60;
else if(m2<m1)
{
total-=60;
m2+=60;
total+=(m2-m1);
}
else
total+=m2-m1;
cout<<total<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2