This commit is contained in:
Max do Val Machado 2021-05-03 17:38:27 -03:00
parent 04d5be35fc
commit 59253784c5
3 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public class Principal2 {
Random gerador = new Random();
gerador.setSeed(4);
for(int i = 1; i < 100000; i++){
for(int i = 1; i <= 100000; i++){
int valor = Math.abs(gerador.nextInt());
if(a1.pesquisar(valor) == false){
a1.inserir(valor);