四舍五入保留
float a=0.188f; double b=System.Math.Round(a,2);//output: 0.19
直接截取:
float f=0.188f; int i=(int)(f*100); f=(float)(i)/100;
时间: 2024-11-02 12:50:34
四舍五入保留
float a=0.188f; double b=System.Math.Round(a,2);//output: 0.19
直接截取:
float f=0.188f; int i=(int)(f*100); f=(float)(i)/100;