Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Clock {
- public static void main(String[] args) {
- while (true) {
- for (int i = 0; i < 24; i++) {
- for (int j = 0; j < 60; j++) {
- System.out.println(i + ":" + j);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment