Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/10/2014, 01:31
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Problema contructor

Buenas,

Aqui tienes un constructor que hace exactamente lo que pides:

Código Java:
Ver original
  1. public class Formula {
  2.     private final double a;
  3.     private final  double b;
  4.     private final  double c;
  5.  
  6.     public Formula(double a, double b) {
  7.         this.a = a;
  8.         this.b = b;
  9.         this.c = (a*Math.pow(b,2))/(2*a);
  10.     }
  11.    
  12.     public double getC() {
  13.         return this.c;
  14.     }
  15.  
  16.     //Test
  17.     public static void main(String... args) {
  18.         System.out.println(new Formula(2,4).getC());
  19.     }
  20. }

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