Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ClockPart2Judge {
- public static void main(String[] args) {
- for (int hours = 0; hours <= 23; hours++) {
- for (int minutes = 0; minutes <= 59; minutes++) {
- for (int seconds = 0; seconds <= 59; seconds++) {
- System.out.println(hours + " : " + minutes + " : " + seconds);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement