Contenido del Curso
Principios Básicos de Java
Principios Básicos de Java
Challenge: Building a Server Retry Mechanism
Tarea
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.
Solución
solution
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
Challenge: Building a Server Retry Mechanism
Tarea
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.
Solución
solution
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones