Here you can find the source of ceil(double d)
Parameter | Description |
---|---|
d | Zahl, die aufgerundet werden soll. |
public static int ceil(double d)
//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; } }