浮點數...四捨五入的問題?? |
答題得分者是:william
|
yedda
一般會員 發表:13 回覆:27 積分:8 註冊:2002-07-21 發送簡訊給我 |
有一段小程式如下:
procedure TForm1.Button1Click(Sender: TObject);
var i:integer;
exrate: array[1..5] of real ;
mabpm : array[1..5] of integer;
a:integer;
begin
exrate[1] := 0.95 ;
exrate[2] := 0.9 ;
exrate[3] := 0.85 ;
exrate[4] := 0.8 ;
exrate[5] := 0.75 ;
for i:=1 to 5 do
begin
mabpm[i] := round(3490 * exrate[i]) ;
memo1.Lines.Add(inttostr(mabpm[i]));
end;
end; 其 output 的值為 3315
3141
2966
2792
2618 但是 round 不是四捨五入嗎??
正確的值應該是 3316
3141
2967
2792
2618 請問上述程式問題出在哪裡呢??
|
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
Search < href="http://delphi.ktop.com.tw/topic.php?topic_id=21876">http://delphi.ktop.com.tw/topic.php?topic_id=21876 BTW, round off error always exists in floating point operation... Try currency or integer type if you want to work on currency.
|
minjiu
中階會員 發表:27 回覆:119 積分:69 註冊:2002-06-26 發送簡訊給我 |
|
yedda
一般會員 發表:13 回覆:27 積分:8 註冊:2002-07-21 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |