• java 两个整数相除保留两位小数


    1 第一种

    import java.math.BigDecimal;
    
    /**
     * @author WGR
     * @create 2020/3/17 -- 15:51
     */
    public class DemoTest {
    
        public static void main(String[] args) {
            int a=100;
            int b=33;
            double f1 = new BigDecimal((float)a/b).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
            System.out.println(f1);
        }
    }

     2 第二种

    import java.text.DecimalFormat;
    
    /**
     * @author WGR
     * @create 2020/3/17 -- 15:51
     */
    public class DemoTest {
    
        public static void main(String[] args) {
            int a=100;
            int b=33;
            DecimalFormat df = new DecimalFormat("0.00");//格式化小数
            String num = df.format((float)a/b);//返回的是String类型
            System.out.println(num);
        }
    }

  • 相关阅读:
    js 设计模式
    jquery 概述
    Node.js最新Web技术栈(2015年5月)
    this
    gulp
    bootstrap modal
    jsTree问题
    iterm2 学习笔记
    knowledge_map 修改笔记
    handsontable 问题
  • 原文地址:https://www.cnblogs.com/dalianpai/p/12511212.html
Copyright © 2020-2023  润新知