public static void main(String[] args){
Random random = new Random();//不带参数则每次结果不一样,带参数每次的结果都一样,默认参数取系统时间System.currentTimeMillis()
double randomDouble1 = random.nextDouble()*98.0+2.0;//获取[2.0d,100.0d)的double随机数;公式:nextDouble()*(max-min)+min
System.out.println(randomDouble1);
/*方法一*/
System.out.println(String.format("%.2f", randomDouble1));//保留两位小数
/*方法二*/
BigDecimal B = new BigDecimal(randomDouble1);
double b = B.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();//ROUND_HALF_UP为四舍五入模式
System.out.println(b);
/*方法三*/
DecimalFormat D = new DecimalFormat("#.##");//.##为两位,.###为三位,依次类推,没有达到精度不会用0补全,若是0.00之类的模式则会以0补全精度
String d = D.format(randomDouble1);
System.out.println(d);
DecimalFormat D1 = new DecimalFormat("#.##");
String d1 = D1.format(1.3);
System.out.println(d1);
DecimalFormat D2 = new DecimalFormat("0.00");
String d2 = D2.format(1.3);
System.out.println(d2);
}
JAVA中保留n位小数的常用方法
最新推荐文章于 2023-01-06 14:59:20 发布
本文详细介绍了如何在Java中使用Random类生成指定范围内的随机数,并提供了三种不同的方法来保留生成的随机数的小数位数,包括使用String.format、BigDecimal和DecimalFormat。
摘要由CSDN通过智能技术生成