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
No Ex3_NumerosAleatorios, para gerar números aleatórios de 0 a 100, acho que:
Esta linha: int numero = random.nextInt(100);
Deveria ser alterada para:
int numero = random.nextInt(101);
Observe a descrição do método random.nextInt():
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
PS.: Ocorre o mesmo no Ex4_ArrayMultidimensional.
Agradeço verificar e comentar.
The text was updated successfully, but these errors were encountered:
Então, o exercícios pede números inteiros aleatórios ENTRE 0 e 100. Sendo assim, seguindo ao pé da letra seria de 1 a 99. Acredito que não especifiquei se o 0 ou 100 estaria incluso ou não.
Mas foi muito boa sua observação, viu? Muito obrigada pela issue. (:
Olá @cami-la ,
No Ex3_NumerosAleatorios, para gerar números aleatórios de 0 a 100, acho que:
Esta linha:
int numero = random.nextInt(100);
Deveria ser alterada para:
int numero = random.nextInt(101);
Observe a descrição do método
random.nextInt()
:PS.: Ocorre o mesmo no Ex4_ArrayMultidimensional.
Agradeço verificar e comentar.
The text was updated successfully, but these errors were encountered: