Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Building a Server Retry Mechanism | Loops
Noções Básicas de Java
course content

Conteúdo do Curso

Noções Básicas de Java

Noções Básicas de Java

1. Primeiros Passos
2. Tipos básicos, operações
3. Loops
4. Arrays
5. String

book
Challenge: Building a Server Retry Mechanism

Tarefa
test

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.

  1. Start a do-while loop that will run up to 5 times.
  2. Increment the retry count in each iteration.
  3. Check if the current attempt matches the successful attempt number.
  4. If successful, print a success message and exit the loop.
  5. After the loop, check if the retry count reached 5.

Solução

java

solution

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 3. Capítulo 4
toggle bottom row

book
Challenge: Building a Server Retry Mechanism

Tarefa
test

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.

  1. Start a do-while loop that will run up to 5 times.
  2. Increment the retry count in each iteration.
  3. Check if the current attempt matches the successful attempt number.
  4. If successful, print a success message and exit the loop.
  5. After the loop, check if the retry count reached 5.

Solução

java

solution

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 3. Capítulo 4
Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
We're sorry to hear that something went wrong. What happened?
some-alt