Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/12/2014, 16:32
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 3 meses
Puntos: 182
Respuesta: bad operand for binary operators

Cada uno de los operandos del if debe retornar true o false.

Código Java:
Ver original
  1. if (( e1y*c1x - e1x*c1y) >= 0 && (e2y*c2x - e2x*c2y) >= 0 && (e3y*c3x - e3x*c3y) >= 0 ){
  2.     return true;
  3. }

Un saludo
__________________
If to err is human, then programmers are the most human of us