Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. while (true) {
  2. if (++min == 60) {
  3. min = 0;
  4. ++hour;
  5. hour %= 24;
  6. }
  7.  
  8. while (true) {
  9. if (--min < 0) {
  10. min = 59;
  11. if (--hour < 0) {
  12. hour = 23;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement