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 ); |
标签:
scale
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· Cursor预测程序员行业倒计时:CTO应做好50%裁员计划
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· Excel百万数据如何快速导入?