Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/12/2012, 04:12
Avatar de Fuzzylog
Fuzzylog
 
Fecha de Ingreso: agosto-2008
Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 4 meses
Puntos: 188
Respuesta: que esta mal?

modifica esto

public static void main(String[] args) {
Prueba auto = new Prueba("BMW",0,0,0);
System.out.println("El auto" +auto.marca+"va a "+auto.velocidad+"km/h");
}

por

public static void main(String[] args) {
System.out.println("probando");
try {
Prueba auto = new Prueba("BMW",0,0,0);
System.out.println("El auto" +auto.marca+"va a "+auto.velocidad+"km/h");

} catch (Exception ex) {
System.out.println("Error: " + ex.getMessage());
}
}

Ejecuta de nuevo y di si sale algo o no sale
__________________
if (fuzzy && smooth) {
fuzzylog = "c00l";
return true;
}