Guest User

Untitled

a guest
Dec 17th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. tolHour := intStarthour + intTimehour;
  2. if tolHour >= 1 then
  3. tolHour := tolHour - 12
  4. end.
  5.  
  6. tolMins := intStartmin + intTimemin;
  7. if tolMins >= 60 then
  8. tolHour := tolHour + 1
  9. tolMins := tolMins - 60
  10. end.
Add Comment
Please, Sign In to add comment