Registriert seit: 31. Mär 2004
Ort: Frankfurt am Main
1.511 Beiträge
Delphi 7 Architect
|
Re: p-g Formel rechner
14. Sep 2005, 17:28
.. so würde ich das machen (ohne ausgabenformatierung)
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
p,q,a,b: real;
begin
if trystrtofloat(edit12.Text,p) and trystrtofloat(edit12.Text,q) then
begin
a:=-p/2;
b:=sqrt(sqr(a)-q);
label1.Caption:=floattostr(a+b);
label2.Caption:=floattostr(a-b);
end
else
Application.MessageBox('Kein Werte angegeben', 'Fehler', MB_OK + MB_ICONERROR)
end;
|
|
Zitat
|