Einzelnen Beitrag anzeigen

Benutzerbild von Wolfgang Mix
Wolfgang Mix

Registriert seit: 13. Mai 2009
Ort: Lübeck
1.222 Beiträge
 
Delphi 2005 Personal
 
#4

Re: Delphiproblem - Taschenrechner brauche hilfe !

  Alt 11. Mai 2010, 12:35
Delphi-Quellcode:
// nte Wurzel aus x
procedure TForm1.Button1Click(Sender: TObject);
var x,n,Ergebnis:double;
begin
  x:=StrToFloat(Edit1.Text);
  n:=3;
  Ergebnis:=exp((1/n)*ln(x));
  Edit2.Text:=FloatToStr(Ergebnis);
end;
[Edit] Das Ganze funktioniert auch ohne unit math. [/Edit]

Google einmal nach Logarithmen, Potenzen und Wurzeln oder schaue
in deine Mathe-Formelsammlung.
Wolfgang Mix
if you can't explain it simply you don't understand it well enough - A. Einstein
Mein Baby:http://www.epubli.de/shop/buch/Grund...41818516/52824
  Mit Zitat antworten Zitat