Java collection
public class Collections {
public static void main(String[] args) { Scanner Ler = new Scanner(System.in); ArrayList<Integer> lista = new ArrayList<Integer>(); int list = 1; while(list >= 0) { System.out.println("Informe os Numeros: "); list = Integer.parseInt(Ler.nextLine()); lista.add(list); } if(list == -1) { System.out.println("Lista Preenchido!"); System.out.println(lista.toString()); } else System.out.println("Lista Nao Esta Preenchida!"); System.out.println("Informe o Numero a Ser Pesquisado: "); int pesq = Integer.parseInt(Ler.nextLine()); if(lista.contains(pesq)) { int pos = lista.indexOf(pesq); System.out.println(" O número " +pesq+ " foi encontrado " + " e está na posição " +pos+ ""); } else System.out.println("Numero Não Esta na Lista!");
HashSet<String> Pessoas = new HashSet<String>(); String ps = ""; System.out.println("Informe o Nome: "); ps = Ler.nextLine();
while(!ps.equals("")) { System.out.println("Informe o Nome: "); ps = Ler.nextLine(); if(Pessoas.contains(ps)) { System.out.println("Não foi possível adicionar o nome a lista, item já existente!"); System.out.println("Informe Outro Nome!"); } else { Pessoas.add(ps); } } for(String Pes : Pessoas) {