Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. if (hour<10)  {System.out.printf("0%d:",hour);}
  2.         else {System.out.printf("%d:",hour);}
  3.         if (min<10)  {System.out.printf("0%d:",min);}
  4.         else {System.out.printf("%d:",min);}
  5.         if (sec<10)  {System.out.printf("0%d",sec);}
  6.         else {System.out.printf("%d",sec);}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement