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

问题描述

我有追溯金额是64642我希望这个数额是64700
$ 600 $ b 600之后值下一个100

喜欢

642 = 700

501 = 600

等在c#中使用RoundOff

i have retrun amount is 64642 i want this amount is 64700
after 600 value make is next 100
like
642 = 700
501= 600
etc in c# using RoundOff

推荐答案

int amount = 64642;
int rounded = (int) Math.Ceiling(amount/100.0) * 100;


这篇关于我如何...使用RoundOff的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 16:00