Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ex3_NumerosAleatorios - random.nextInt() #50

Open
haldirleao opened this issue Apr 1, 2023 · 1 comment
Open

Ex3_NumerosAleatorios - random.nextInt() #50

haldirleao opened this issue Apr 1, 2023 · 1 comment

Comments

@haldirleao
Copy link

haldirleao commented Apr 1, 2023

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():

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.

@cami-la
Copy link
Owner

cami-la commented Apr 5, 2023

Oi, @haldirleao. Tudo certinho?

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. (:

Bons estudos e fico à disposição.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants