Advertisement
veronikaaa86

01. Clock

Oct 15th, 2022 (edited)
971
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. public class LiveDemo {
  2.     public static void main(String[] args) {
  3.  
  4.         for (int hour = 0; hour <= 23; hour++) {
  5.             for (int min = 0; min <= 59; min++) {
  6.                 System.out.printf("%d:%d%n", hour, min);
  7.             }
  8.         }
  9.     }
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement