package cn.cccc.demo;class MathUtil{ private MathUtil(){};
public static double round(double num, int scale){ return Math.round(num * Math.pow(10, scale)) / Math.pow(10, scale); }}public class ThreadDemo { public static void main(String[] args) throws Exception{ System.out.println(MathUtil.round(19.46735, 2)); }} 总访问量次 总访客数人次