如何将浮点数设置为指定数字的上限

时间:2018-10-26 10:10:21

标签: c# math ceiling

感谢您关注我的问题;

很难描述我的问题;我用数据来表达;

数据示例:

3.21
3.22
3.23
3.24
3.25
3.26
3.27
3.28
3.29

预期输出:

3.3

关于这种情况的故事:当我计算产品销售价格时;有折扣;所以代码有点像这样:折扣范围(0,10)

var realSalePrice=(1-discount/100)*lablePrice

首先,我想保留一个小数,但是我不想使用Math.round(realSalePrice,1);,我不想四舍五入;

我正在寻找的是一个类似的功能: Math.Ceiling(realSalePrice,1);

我的目的是让客户支付更多(第二个小数);

例如:

var realSalePrice = 3.21;

var realSalePrice = 3.29;

客户始终支付3.3美元

0 个答案:

没有答案