java、js 对于四舍五入、向上取整、向下取整

1、Javascript Math ceil()、floor()、round()三个函数的区别:

  • Round是四舍五入为整数;
  • Ceiling是向上取整;
  • float是向下取整;


ceil():将小数部分一律向整数部分进位。
如:
 
Math.ceil(12.2)//返回13
Math.ceil(12.7)//返回13
Math.ceil(12.0)// 返回12
 
floor():一律舍去,仅保留整数。
如:
 
Math.floor(12.2)// 返回12
Math.floor(12.7)//返回12
Math.floor(12.0)//返回12
 
round():进行四舍五入
如:
 
Math.round(12.2)// 返回12
Math.round(12.7)//返回13

Math.round(12.0)//返回12


2、javascript中toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。

例如:

var num = new Number(13.37);
num.toFixed(1); //返回13.4


3、java中,四舍五入、向上、向下取整函数:

  • Math.rint(double a):四舍五入为整数;
  • Math.ceil(double a):向上取整用;
  • Math.floor(double a):向下取整用;
例如:

  double a=35;
  double b=20;
  double c = a/b;
  System.out.println("c===>"+c);   //1.75
  System.out.println("c===>"+Math.rint(c)); //2.0
  System.out.println("c===>"+Math.ceil(c)); //2.0
  System.out.println(Math.floor(c));  //1.0

4、java中,四舍五入保留小数:

// 方式一:
double f = 3.1516;
BigDecimal b = new BigDecimal(f);
double f1 = b.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
 
// 方式二:
new java.text.DecimalFormat("#.00").format(3.1415926);
// #.00 表示两位小数 #.0000四位小数 以此类推…
 
// 方式三:
double d = 3.1415926;
String result = String.format("%.2f", d);
// %.2f %. 表示 小数点前任意位数 2 表示两位小数 格式后的结果为f 表示浮点型。
 
//方法四:
Math.round(5.2644555 * 100) * 0.01d;
//String.format("%0" + 15 + "d", 23) 23不足15为就在前面补0




你可能感兴趣的:(web前端,java)