Advertisement
noshin98

uva 11677

Jul 10th, 2016
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.53 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5.     int h1,m1,h2,m2,h,m,ans;
  6.     while(scanf("%d%d%d%d",&h1,&m1,&h2,&m2)==4)
  7.     {
  8.         if(h1==0&&m1==0&&h2==0&&m2==0)
  9.             break;
  10.         else
  11.         {
  12.             h=h2-h1;
  13.             m=m2-m1;
  14.  
  15.             if(m<0)
  16.             {
  17.                 m=m+60;
  18.                 h=h-1;
  19.             }
  20.             if(h<0)
  21.             {
  22.                 h=h+24;
  23.             }
  24.             ans=(h*60)+m;
  25.  
  26.         }
  27.         printf("%d\n",ans);
  28.     }
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement