Ver Mensaje Individual
  #9  
Antiguo 30-04-2010
hervicen hervicen is offline
Registrado
 
Registrado: abr 2010
Posts: 5
Reputación: 0
hervicen Va por buen camino
Utilizando esta sentencias

Var
Prestamo, Plazo, Interes: Integer;
Cuotas: Real;
begin
Prestamo:=StrtoINt(edit1.Text);
Plazo:=StrtoINt(edit2.Text);
Interes:=StrtoINt(edit3.Text);
Cuotas:=(Prestamo * Power(1+(Interes/100)),Plazo)/Plazo;
edit4.text:=formatFloat([Cuotas]);

Me arroja el siguiente error:

[Error]Unit1.pas(43):Undeclared indentifier:'Power'
[Error]Unit1.pas(43):')' expected but ',' found
Responder Con Cita