Advertisement
desislava_topuzakova

01. Clock

Jun 4th, 2023
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Clock {
  2. public static void main(String[] args) {
  3. //часове: 0 до 23
  4. for (int hour = 0; hour <= 23; hour++) {
  5. //минута: 0 до 59
  6. for (int minute = 0; minute <= 59; minute++) {
  7. System.out.println(hour + ":" + minute);
  8. }
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement