Advertisement
PROFESSOR_AIH

Game time

Mar 26th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int srt,end,total;
  5.     scanf("%d %d",&srt,&end);
  6.     if(srt>=12)
  7.     {
  8.         total=(24-srt)+end;
  9.     }
  10.     else if(end>=12)
  11.     {
  12.         total=end-srt;
  13.     }
  14.     else if(srt==end)
  15.     {
  16.         total=24;
  17.     }
  18.     printf("O JOGO DUROU %d HORA(S)\n",total);
  19.  
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement