Advertisement
myrdok123

01. Clock

Apr 13th, 2024
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package NestedLoops;
  2.  
  3.  
  4. public class P01Clock {
  5.  
  6.     public static void main(String[] args) {
  7.  
  8.         for (int hours = 0; hours <= 23; hours++) {
  9.  
  10.             for (int minutes = 0; minutes <= 59; minutes++) {
  11.  
  12.                 System.out.printf("%d:%d%n", hours, minutes);
  13.  
  14.             }
  15.  
  16.         }
  17.  
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement