- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2012-11-27 17:01 编辑
回复 4# murdercool
1. using awk, but don't using float
Note: change some algorithm
$ awk 'BEGIN{n=(0.9-0.8)*10;print n;if(n==1){print "yes"}else{print "No"}}'
1
No
$ awk 'BEGIN{n=0.9*10-0.8*10;print n;if(n==1){print "yes"}else{print "No"}}'
1
yes
2. using awk with error(误差)
Note: using the same algorithm and using some function to check equal
$ awk 'function eq(n,m,err,diff){diff=(n>m)?n-m:m-n;return diff<=err?1:0}BEGIN{n=(0.9-0.8)*10;printf("%.20f\n",n);if(eq(n,1,0.00000000000001)){print "yes"}else{print "No"}}'
0.99999999999999977796
yes
$ awk 'function eq(n,m,err,diff){diff=(n>m)?n-m:m-n;return diff<=err?1:0}BEGIN{n=(0.9-0.8)*10;printf("%.20f\n",n);if(eq(n,1,0.000000000000000001)){print "yes"}else{print "No"}}'
0.99999999999999977796
No
3. using other language(ex: perl) to support it
Note: using the same algorithm
$ perl -e 'use bignum; $n=(0.9-0.8)*10;printf("%.20f\n",$n);if($n==1){print "yes\n"}else{print "No\n"}'
1.00000000000000000000
yes
$ perl -e '$n=(0.9-0.8)*10;printf("%.20f\n",$n);if($n==1){print "yes\n"}else{print "No\n"}'
0.99999999999999977796
No
|
|