Advertisement
veronikaaa86

01. Clock

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