将double数据保留两位小数】的更多相关文章

package com; public class T2 { public static void main(String[] args) { System.out.println(calculateProfit(0.233)); System.out.println(calculateProfit(0.235)); System.out.println(calculateProfit(0.237)); System.out.println(calculateProfit(0.2)); } /*…
package com; public class T2 { public static void main(String[] args) { System.out.println(calculateProfit(0)); System.out.println(calculateProfit(0.963)); System.out.println(calculateProfit(0.123456)); System.out.println(calculateProfit(100)); Syste…
private double formatDouble(double number) { DecimalFormat df = new DecimalFormat("#.00"); return Double.valueOf(df.format(number)); }…
1.代码如下: /** * 对double数据类型的数据 保留两位小数,并且进行四舍五入 * @author Administrator */ public class Main { // 工具类 public static String round(double data) { DecimalFormat df = new DecimalFormat("#.00"); String s = df.format(data); return s; } public static void…
4种方法,都是四舍五入,例: import java.math.BigDecimal; import java.text.DecimalFormat; import java.text.NumberFormat; public class format { double f = 111231.5585; public void m1() { BigDecimal bg = new BigDecimal(f); double f1 = bg.setScale(2, BigDecimal.ROUND…
public class DoubleTest { //保留两位小数第三位如果大于4会进一位(四舍五入) double f = 6.23556; /** *使用精确小数BigDecimal */ public void fun1() { BigDecimal bg = new BigDecimal(f); /** * 参数: newScale - 要返回的 BigDecimal 值的标度. roundingMode - 要应用的舍入模式. 返回: 一个 BigDecimal,其标度为指定值,其非…
/*** * 保留2位小数 * @param floatValue * @return */ float scale(Float floatValue) { DecimalFormat format = new DecimalFormat("#.00"); String scaled = format.format(floatValue); return Float.parseFloat(scaled); } double scale(Double doubleValue) { Dec…
已知 双精度标量 f,  如果想以字符串形式输出,小数点后保留2位,可直接通过C语言的输出格式,System.out.printf("%.2f", f), 达到目的. 如果想要先转变成小数点后保留2位的双精度变量,然后再输出,可以尝试用 f 作参数,创建一个 BigDecimal 对象 b,再 调用 BigDeciaml 对象的 setScale 方法,以取得另一个 小数点后2位的新对象,最后,通过这个新对象,调用 方法:doubleValue(),  以取得双精度变量 f1. 最后,…
http://blog.csdn.net/huaishuming/article/details/17752365 ********************************************************** 4种方法,都是四舍五入,例: import java.math.BigDecimal; import java.text.DecimalFormat; import java.text.NumberFormat; public class format { doub…
方法示例: DecimalFormat df = new DecimalFormat("0.00"); Object price = 2; Object price1 = 2.3; Object price2 = 2.3154; String str = df.format(price); String str1 = df.format(price1); String str2 = df.format(price2); System.out.println("str-->…