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

Java --计算百分比

时间:2014-09-24 17:07:07      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   java   ar   for   div   

Learn From: http://blog.csdn.net/maggiehexu/article/details/6387636

方法一:

public String getPercent(int x,int total){
   String result = "";//接受百分比的值
   double x_double = x*1.0;
   double tempresult = x/total;
DecimalFormat df1 = new DecimalFormat("0.00%"); //##.00% 百分比格式,后面不足2位的用0补齐 result= df1.format(tempresult);
return result; }

方法二:

public String getPercent(int x,int total){
   String result = "";//接受百分比的值
   double x_double = x*1.0;
   double tempresult = x/total;
NumberFormat nf
= NumberFormat.getPercentInstance(); nf.setMinimumFractionDigits(2); result=nf.format(tempresult);
return result; }

 

Java --计算百分比

标签:style   blog   http   color   io   java   ar   for   div   

原文地址:http://www.cnblogs.com/lmei/p/3990648.html

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