necesito que si tipo == "LATA", no entre al ciclo, pero igualmente lo hace
private static String ingTipo() {
System.out.println("Ingrese tipo de envase");
String tipo = scan.nextLine();
while (tipo != "LATA") {
System.out.println("Ingrese tipo de envase");
tipo = scan.next();
}
return tipo;
}