posts - 109,comments - 1,views - 11万
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
String str;
        do{
            Scanner scanner = new Scanner(System.in);
            System.out.println("请输入年利率数字部分(如年利率为8.5%,则输入8.5即可.)");
            str = scanner.nextLine();
            float fff = (Float.parseFloat(str)*100)/360;
            System.out.println("变形前:>>>>>"+fff+"");
            System.out.println("万份日收益为:Math.round>>>>>"+(double)(Math.round(fff*100)/100.0)+"元");
            System.out.println("万份日收益为:format>>>>>"+String.format("%.2f",fff));
            DecimalFormat df = new DecimalFormat("#.##");
            System.out.println("万份日收益为:DecimalFormat>>>>>"+Double.parseDouble(df.format(fff))+"    之前>>>>>"+df.format(fff));
            System.out.println("万份日收益为:double>parseString>>>>>"+Double.parseDouble(String.format("%.2f", fff)));
            BigDecimal bd = new BigDecimal(fff);
            BigDecimal bd2 = bd.setScale(3, BigDecimal.ROUND_HALF_UP);
            System.err.println("1111万份日收益为:BigDecimal>>>>>"+bd2.toString()+"   Double.parse>>>>>"+Double.parseDouble(bd2.toString()));
        }while(true);

 

posted on   小写K  阅读(702)  评论(0编辑  收藏  举报
编辑推荐:
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
阅读排行:
· Cursor预测程序员行业倒计时:CTO应做好50%裁员计划
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· Excel百万数据如何快速导入?
< 2025年4月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 1 2 3
4 5 6 7 8 9 10

点击右上角即可分享
微信分享提示