Зміст курсу
Основи Java
Основи Java
Challenge: Building a Server Retry Mechanism
Завдання
Swipe to show code editor
Your task is to implement a program that attempts to connect to a server up to 5 times. If the connection is successful, the program prints a success message. If it fails after 5 attempts, it prints an error message.
- Start a
do-while
loop that will run up to 5 times. - Increment the retry count in each iteration.
- Check if the current attempt matches the successful attempt number.
- If successful, print a success message and exit the loop.
- After the loop, check if the retry count reached 5.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 3. Розділ 4
Challenge: Building a Server Retry Mechanism
Завдання
Swipe to show code editor
Your task is to implement a program that attempts to connect to a server up to 5 times. If the connection is successful, the program prints a success message. If it fails after 5 attempts, it prints an error message.
- Start a
do-while
loop that will run up to 5 times. - Increment the retry count in each iteration.
- Check if the current attempt matches the successful attempt number.
- If successful, print a success message and exit the loop.
- After the loop, check if the retry count reached 5.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 3. Розділ 4
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів