Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
 
Delphi 12 Athens
 
#11

AW: Rechner programmieren

  Alt 25. Feb 2011, 21:36
Delphi-Quellcode:
a := StrToFloat(Label1.Caption);
b := StrToFloat(Label2.Caption);

c := a / b;
d := Trunc(c);
e := Frac(c);

Label3.Caption := FloatToStr(d);
Label4.Caption := FloatToStr(e);
oder, um es mal mit nur einem Label zu machen, für's Ergebnis
Delphi-Quellcode:
...
Label3.Caption := Format('%n (Rest = %n)', [d, e]);
$2B or not $2B
  Mit Zitat antworten Zitat