- #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;
- }
複製代碼 |