Помогите разобраться private void printTime() throws InterruptedException { //add your code here - добавь код тут while (!isStopped) { Thread.sleep(1000); seconds++; if (seconds == 60) { seconds = 0; minutes++; if (minutes == 60) { minutes = 0; hours++; if (hours == 24) { hours = 0; } } } System.out.println(String.format("В г. %s сейчас %d:%d:%d!", cityName, hours, minutes, seconds)); if (hours == 0 && minutes == 0 && seconds == 0) { System.out.println(String.format("В г. %s сейчас полночь!", cityName)); } } Вывод программы В г. Лондон сейчас 23:59:58! В г. Лондон сейчас 23:59:59! В г. Лондон сейчас 0:0:0! В г. Лондон сейчас полночь! В г. Лондон сейчас 0:0:1!