比如:
将 2.131415925 这个数字保留三位小数并四舍五入,可用下面的代码实现
int temp = 2.131415925 * 1000 + 0.5; float temp1 = ((float)temp)/1000;
想保留几位就乘 10 的几次方。