Conteúdo do Curso
Noções Básicas de Java
Noções Básicas de Java
Challenge: Building a Server Retry Mechanism
Tarefa
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.
Solução
solution
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 4
Challenge: Building a Server Retry Mechanism
Tarefa
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.
Solução
solution
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 4
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo