Advertisement
veronikaaa86

01. Clock

Jun 17th, 2023
1,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package nestedLoops;
  2.  
  3. public class P01Clock {
  4.     public static void main(String[] args) {
  5.  
  6.         for (int h = 0; h <= 23; h++) {
  7.             for (int m = 0; m <= 59; m++) {
  8.                 System.out.printf("%d:%d%n", h, m);
  9.             }
  10.         }
  11.     }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement