Here you can find the source of div(double v1, double v2)
public static double div(double v1, double v2)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { private static final int DEF_DIV_SCALE = 10; public static double div(double v1, double v2) { return div(v1, v2, DEF_DIV_SCALE); }/* w w w . j a v a 2 s . co m*/ public static double div(double v1, double v2, int scale) { if (scale < 0) { throw new IllegalArgumentException("The scale must be a positive integer or zero"); } BigDecimal b1 = new BigDecimal(Double.toString(v1)); BigDecimal b2 = new BigDecimal(Double.toString(v2)); return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).doubleValue(); } public static float div(float v1, float v2) { return div(v1, v2, DEF_DIV_SCALE); } public static float div(float v1, float v2, int scale) { if (scale < 0) { throw new IllegalArgumentException("The scale must be a positive integer or zero"); } BigDecimal b1 = new BigDecimal(Float.toString(v1)); BigDecimal b2 = new BigDecimal(Float.toString(v2)); return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).floatValue(); } }