码迷,mamicode.com
首页 > 编程语言 > 详细

java 求 两个数的百分比% (转)

时间:2016-11-30 13:54:19      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:max   java   print   imu   color   个数   设置   nbsp   result   

 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 求 两个数的百分比% (转)

标签:max   java   print   imu   color   个数   设置   nbsp   result   

原文地址:http://www.cnblogs.com/kingxiaozi/p/6117273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!