数学四舍五入
本文关键字:四舍五入 | 更新日期: 2023-09-27 17:50:49
我需要一些帮助与Math.Round()
舍入0.73到73。我不知道是怎么回事。老师要我写一个方法,输入一个小数,然后返回一个整数
public static int Round(double number)
{
int numberLenght = number.ToString().Length;
int times = (int) Math.Pow(10, numberLenght-2);
return (int) (number*times);
}
你是这样吗?