12/12/2008, 04:50
|
| | Fecha de Ingreso: diciembre-2008
Mensajes: 10
Antigüedad: 16 años, 1 mes Puntos: 0 | |
Respuesta: Pedir operador emucho me falla el Main en las lines en negrita esta el problema:
/************************************************** ************************************************
MÉTODO: MAIN()
************************************************** ************************************************/
public static void main(String args[]) throws IOException
{
System.out.print(" Introduzca el primer numero: " );
double numero1 = leerNumero();
System.out.print(" Introduzca el segundo numero: " );
double numero2 = leerNumero();
System.out.print(" Introduzca el operador: " );
String operador=leerOperador(); String operacion=Operador.operador(operacion, num1,num2);
mostrar (operacion);
}
} |