• java保留小数点两位的4种方法


    1. import java.math.BigDecimal;
    2. import java.text.DecimalFormat;
    3. import java.text.NumberFormat;
    4. public class format {
    5.     double f = 111231.5585;
    6.     public void m1() {
    7.         BigDecimal bg = new BigDecimal(f);
    8.         double f1 = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
    9.         System.out.println(f1);
    10.     }
    11.     /**
    12.      * DecimalFormat转换最简便
    13.      */
    14.     public void m2() {
    15.         DecimalFormat df = new DecimalFormat("#.00");
    16.         System.out.println(df.format(f));
    17.     }
    18.     /**
    19.      * String.format打印最简便
    20.      */
    21.     public void m3() {
    22.         System.out.println(String.format("%.2f", f));
    23.     }
    24.     public void m4() {
    25.         NumberFormat nf = NumberFormat.getNumberInstance();
    26.         nf.setMaximumFractionDigits(2);
    27.         System.out.println(nf.format(f));
    28.     }
    29.     public static void main(String[] args) {
    30.         format f = new format();
    31.         f.m1();
    32.         f.m2();
    33.         f.m3();
    34.         f.m4();
    35.     }
    36. }
  • 相关阅读:
    [POI2013]BAJ-ytecomputer [动态规划]
    【2019.10.15】网课 Za
    【初赛】
    [NOI2014]魔法森林[最短路 spfa]
    【洛谷2019金秋营模拟赛1】
    【luogu1315】 观光公交[贪心]
    【luogu4450】收集邮票 [期望dp]
    [HAOI2012]高速公路 [线段树 期望]
    ALGO-185 Trash Removal
    精度计算——减法
  • 原文地址:https://www.cnblogs.com/yw09041432/p/5842204.html
Copyright © 2020-2023  润新知