c语言float、double数据保留2位小数

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

挺实用的。double也可以。

猜你喜欢

转载自www.cnblogs.com/airduce/p/9708795.html