Delphi's question about the precision of decimal place

Source: Internet
Author: User

The round function uses the banker algorithm, which does not work.

Roundto is not so.

What format Ah,

Result: = Int (value * 100 + 0.5)/100;

All of them are not useful.

Figure out why, many times the result is: 17.145, but the fact is 17.1449999999, then you rounded two results is not right, especially money. Oh

In the online finally hunted to a master algorithm, we share the following:

class function Tnewdcfunc.roundfloat (F:double;i:integer):d ouble;
Var
s:string;
ef:extended;
Begin
S:= ' #. ' + Stringofchar (' 0 ', i);
Ef:=strtofloat (Floattostr (f));//Prevent errors in floating-point arithmetic
Result:=strtofloat (Formatfloat (S,EF));
End

Delphi's question about the precision of decimal place

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.