Java Ceil ceil(double d)

Here you can find the source of ceil(double d)

Description

Aufrunden.

License

Open Source License

Parameter

Parameter Description
d Zahl, die aufgerundet werden soll.

Return

aufgerundete Zahl

Declaration

public static int ceil(double d) 

Method Source Code

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

public class Main {
    /**//from ww w  .  j a va  2  s .  c  o m
     * Aufrunden.
     *
     * @param d
     *            Zahl, die aufgerundet werden soll.
     * @return aufgerundete Zahl
     */
    public static int ceil(double d) {
        int floored = floor(d);
        if (d == floored) {
            return floored;
        }
        return floored + 1;
    }

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

Related

  1. ceil(double a)
  2. ceil(double a, double precision)
  3. ceil(double a, int cutOfDigits)
  4. ceil(double d)
  5. ceil(double d, int exp)
  6. ceil(double d, int p)
  7. ceil(double double1, double double2)
  8. ceil(double num, int bit)