Java Number Round roundAdd(double a, double b)

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

Description

Addieren 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 roundAdd(double a, double b) 

Method Source Code

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

public class Main {
    /**/*w ww  .j  ava  2  s.c  o m*/
     * Addieren und dann das Ergebnis runden.
     *
     * @param a
     *            Zahl 1
     * @param b
     *            Zahl 2
     * @return gerundetes Ergebnis
     */
    public static int roundAdd(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. Round(Object in)
  2. round(String num, int length)
  3. round4(int n)
  4. round_pow2(int x)
  5. round_up(int value, int multiple)
  6. roundAndCrop(final float x, final int min, final int max)
  7. roundByGridSize(int value)
  8. roundByte(final double value)
  9. roundBytesToGB(long bytes)