如何截取小数点后几位,(C floor函数例子)
最近,一个项目里面需要对计算出来的商值截取至两位小数.不是四舍五入,而是去尾.
1.使用floor函数,把结果放大100倍,对其取floor函数,然后在缩小100倍.具体如下:
def_amnt=floor(fee*100/tnrno)/100;
试下一下,确实能把后面的位数截掉.以为万事无忧了.然而发现8919.80/5=1783.96,计算出来的
def_amnt就会少了0.01,为1783.95.发现floor(178396.00)=178395.计算就出错,究其原因,应该是二进制
浮点表示法的误差吧.
2.把数值转入字符串,截取字符串小数点后2位后,转回数值.具体如下:
char amntbuf[50];
char *ptmp;
memset(amntbuf,0x00,sizeof(amntbuf));
sprintf(amntbuf,"%f",feedefer_stru->fee/feecode_stru->tnrno);
ptmp = strchr(amntbuf,'.');
if (ptmp==NULL){
strcat(amntbuf,".00");
}else{
/** 净值保留 2 位 */
ptmp+=3;
*ptmp=0;
}
虽然麻烦了点,这样做的确保证了截取的正确性.
1.使用floor函数,把结果放大100倍,对其取floor函数,然后在缩小100倍.具体如下:
def_amnt=floor(fee*100/tnrno)/100;
试下一下,确实能把后面的位数截掉.以为万事无忧了.然而发现8919.80/5=1783.96,计算出来的
def_amnt就会少了0.01,为1783.95.发现floor(178396.00)=178395.计算就出错,究其原因,应该是二进制
浮点表示法的误差吧.
2.把数值转入字符串,截取字符串小数点后2位后,转回数值.具体如下:
char amntbuf[50];
char *ptmp;
memset(amntbuf,0x00,sizeof(amntbuf));
sprintf(amntbuf,"%f",feedefer_stru->fee/feecode_stru->tnrno);
ptmp = strchr(amntbuf,'.');
if (ptmp==NULL){
strcat(amntbuf,".00");
}else{
/** 净值保留 2 位 */
ptmp+=3;
*ptmp=0;
}
虽然麻烦了点,这样做的确保证了截取的正确性.