Advertisement
veronikaaa86

01. Clock

Apr 10th, 2021
733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package nestedLoops;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P01Clock {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.  
  9.         for (int hour = 0; hour <= 23; hour++) {
  10.             for (int min = 0; min <= 59; min++) {
  11.                 System.out.printf("%d:%d%n", hour, min);
  12.             }
  13.         }
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement