本文介绍了如何跳过四舍五入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

int NumValue = 123.6;

string StrValue = NumValue.ToString("00000");





分配给StrValue的值是00124而不是00123(表示圆形off)。



请指导我如何跳过四舍五入????



The value assigned to "StrValue" is 00124 instead of 00123 (Means round off).

Please guide me that how to skip rounding off ????

推荐答案

int NumValue = (int)123.6;



截断:


Truncate:

int NumValue = Math.Truncate( 123.6 );


float NumValue = 123.6f;
 string StrValue = Math.Floor(NumValue).ToString("00000");


int NumValue = (int) 123.6;

string StrValue = NumValue.ToString("00000");



或者,如果您使用的是浮点数,那么您可以明确说出您想要的四舍五入:


Or, if you are using floating point then you can explicitly say what rounding you want:

double NumValue = (int) 123.6;

string StrValue = Math.Round(NumValue, 0).ToString("00000");


这篇关于如何跳过四舍五入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 04:58