Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: kaufmännisch runden
26. Nov 2013, 17:43
Delphi-Quellcode:
resz := FloatToCurr(x);
resz := RoundX(resz, 2);
// dürfte eigentlich Folgendem entsprechen
resz := RoundX(resz, 4); // FloatToCurr(x);
resz := RoundX(resz, 2);
Nicht ganz:
Delphi-Quellcode:
resz := RoundX(x, 4); // FloatToCurr(x);
resz := RoundX(resz, 2);
kommt eher hin.
|