Hola que tal ? prueba esto a ver, avisa si te funciona no te pierdas
o si quieres pierdete, hablas de introducir 2 identificadores?
package testing.foro.identificadorCoches;
public class BeanCoches {
this.identificador = identificador;
this.kilometros = kilometros;
}
public void setKilometros
(Integer kilometros
) { this.kilometros = kilometros;
}
public void setIdentificador
(String identificador
) { this.identificador = identificador;
}
public String getIdentificador
() { return identificador;
}
return kilometros;
}
@Override
return "\nIdentificador: "
.concat(identificador)
.concat("\nKilometros: ")
.concat(kilometros.toString());
}
}
package testing.foro.identificadorCoches;
import javax.swing.*;
import java.util.Scanner;
/*
En el siguiente codigo necesito introducir dos identificadores de coches por scanner y
que me muestre cual es el coche que ha recorrido mas kilómetros.
*/
public class Coches {
private static final Scanner TECLADO
= new Scanner
(System.
in);
public Coches() {
init();
}
private void init() {
// Se almacenan un numero maximo de coches (4).
BeanCoches arrayCoches[] = new BeanCoches[4];
int contador = 0;
for (int f = 0; f < arrayCoches.length; f++) {
println("Introduce el identificador del coche: ");
final int kilometros;
print("Identificador: ");
identificador = TECLADO.next();
print("Kilometros: ");
kilometros = TECLADO.nextInt();
//seteamos al contructor el identificador y kilometros 2 parametros
//tambien se pueden sus setters
final BeanCoches coche = new BeanCoches(identificador, kilometros);
arrayCoches[f] = coche;
//System.out.print("Coche dado de alta ");
//System.out.println();
//Comparar coches: el usuario introducir dos identificadores de coches y se mostrar el coche que haya recorrido mas kilometros.
}
println("Coches Procesados MAYOR KILOMETRAJE ###########################################");
String cocheIdentificador
= ""; for (int f=0; f<arrayCoches.length; f++) {
cocheMayor = mayorKilometraje(arrayCoches);
cocheIdentificador = getCocheIdentificador(arrayCoches);
}
final StringBuilder mensaje = new StringBuilder();
mensaje.append("Coche con Mayor Kilometraje");
mensaje.append("\n * Identificador: ").append(cocheIdentificador);
mensaje.append("\n * Kilometraje: ").append(cocheMayor);
print(mensaje.toString());
area.setText(mensaje.toString());
JOptionPane.
showMessageDialog(null,area,
"Coches Procesados",
1); }
//Buscar coche con mayor Kilometraje
public Integer mayorKilometraje
(final BeanCoches arrayCoches
[]) { int index = arrayCoches[0].getKilometros();
for( int f=0; f < arrayCoches.length; f++ ) {
if( arrayCoches[f].getKilometros() > index ) { //obtenemos el kilometraje
index = arrayCoches[f].getKilometros();
}
}
return index;
}
//Buscar coche con mayor Kilometraje y cuando lo encuentre obtenemos el nombre
private String getCocheIdentificador
(final BeanCoches beanCoches
[]) { int index = beanCoches[0].getKilometros();
String identificador
= beanCoches
[0].
getIdentificador(); for(int f=0; f<beanCoches.length;f++) {
if(beanCoches[f].getKilometros() > index) {
identificador = beanCoches[f].getIdentificador();
}
}
return identificador;
}
private static <T> void print(final T s) {
}
private static <T> void println(final T s) {
}
new Coches();
}
}