veronikaaa86

01. Clock

Apr 2nd, 2022 (edited)
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class LiveDemo {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. for (int h = 0; h <= 23; h++) {
  8. for (int m = 0; m <= 59; m++) {
  9. System.out.printf("%d:%d%n", h, m);
  10. //System.out.printf("%d:%02d%n", h, m);
  11. }
  12. }
  13. }
  14. }
  15.  
Add Comment
Please, Sign In to add comment