Java Double Number Round roundDiv(double a, double b)

Here you can find the source of roundDiv(double a, double b)

Description

Dividieren und dann das Ergebnis runden.

License

Open Source License

Parameter

Parameter Description
a Zahl 1
b Zahl 2

Return

gerundetes Ergebnis

Declaration

public static int roundDiv(double a, double b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**/*from ww w.  jav  a2  s  . c o m*/
     * Dividieren und dann das Ergebnis runden.
     *
     * @param a
     *            Zahl 1
     * @param b
     *            Zahl 2
     * @return gerundetes Ergebnis
     */
    public static int roundDiv(double a, double b) {
        return round(a / b);
    }

    /**
     * Runden.
     *
     * @param d
     *            Zahl
     * @return gerundetes Ergebnis
     */
    public static int round(double d) {
        return floor(d + .5);
    }

    /**
     * Abrunden.
     *
     * @param d
     *            Zahl
     * @return aufgerundetes Ergebnis
     */
    public static int floor(double d) {
        return (int) d;
    }
}

Related

  1. roundDec(float num, int dec)
  2. roundDecimal(Double value)
  3. roundDecimal(double x, int d)
  4. roundDecimals(double d, int decimalPlaces)
  5. roundDecimals(double x, int decimals)
  6. roundDouble(double d)
  7. roundDouble(double d)
  8. roundDouble(double d, int decimals)
  9. roundDouble(double d, int place)