java 求 两个数的百分比% (转)
Posted 飘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 求 两个数的百分比% (转)相关的知识,希望对你有一定的参考价值。
1 int num1 = 7; 2 3 int num2 = 9; 4 5 // 创建一个数值格式化对象 6 7 NumberFormat numberFormat = NumberFormat.getInstance(); 8 9 // 设置精确到小数点后2位 10 11 numberFormat.setMaximumFractionDigits(2); 12 13 String result = numberFormat.format((float) num1 / (float) num2 * 100); 14 15 System.out.println("num1和num2的百分比为:" + result + "%");
以上是关于java 求 两个数的百分比% (转)的主要内容,如果未能解决你的问题,请参考以下文章
在js中怎样求两个数的百分比,比如4和5的百分比为80%,请高手赐教,谢谢先