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

问题描述

我的双号:



double inputValue = 48.4866666;



我想:inputValue = 48.48



inputValue = Math.Round(inputValue,2);



我试过的:



inputValue = Math.Round(inputValue,2);但它给48.49我需要48.48

My double number:

double inputValue = 48.4866666;

I want: inputValue = 48.48

inputValue = Math.Round(inputValue, 2);

What I have tried:

inputValue = Math.Round(inputValue, 2); but its give 48.49 and I need 48.48

推荐答案


inputValue = Math.Truncate(inputNumber * 100.0) / 100.0;


inputValue = Math.Round(inputValue, 2, MidpointRounding.AwayFromZero);



For negative numbers you have to subtract.


这篇关于如何拆分双号。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 16:59