首页 > 技术文章 > c语言float、double数据保留2位小数

airduce 2018-09-26 18:25 原文

float sp = 36.51647;
 sp=( (float)( (int)( (sp+0.005)*100 ) ) )/100;

挺实用的。double也可以。

推荐阅读