Hmmmm ok und ich dachte schon Schafe
Nun zur Aufgabe:
Ne also ich würde ganz einfach 2 Editfelder setzen,
1 Label und 1 Button.
Das müsste denn ungefähr so aussehen:
Delphi-Quellcode:
var
a, b, c : real;
procedure TForm1.Button1Click(Sender: TObject);
begin
a := strtofloat (Edit1.Text);
b := strtofloat (Edit2.text);
c := a * b;
label1.caption := floattostr(c);
end;