You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Percebe no seu codigo que quando você esta dentro do laço o seu teste e se numero e >= (Maior ou iguala) e nao > (Maior) tem um motivo para adicionar o = (Igual) ?
public int encontrarMaiorNumero() {
int maiorNumero = Integer.MIN_VALUE;
if (!numeros.isEmpty()) {
for (Integer numero : numeros) {
if (numero >= maiorNumero) {
maiorNumero = numero;
}
}
return maiorNumero;
} else {
throw new RuntimeException("A lista está vazia!");
}
}
The text was updated successfully, but these errors were encountered:
Percebe no seu codigo que quando você esta dentro do laço o seu teste e se numero e >= (Maior ou iguala) e nao > (Maior) tem um motivo para adicionar o = (Igual) ?
public int encontrarMaiorNumero() {
int maiorNumero = Integer.MIN_VALUE;
if (!numeros.isEmpty()) {
for (Integer numero : numeros) {
if (numero >= maiorNumero) {
maiorNumero = numero;
}
}
return maiorNumero;
} else {
throw new RuntimeException("A lista está vazia!");
}
}
The text was updated successfully, but these errors were encountered: