Java Ceil ceil(float f)

Here you can find the source of ceil(float f)

Description

Returns the first integer that is larger than the given float.

License

Open Source License

Parameter

Parameter Description
f A finite float.

Return

The first integer that is larger than f.

Declaration

public static int ceil(float f) 

Method Source Code

//package com.java2s;
/*/*from   w w w . j  a va2 s .com*/
 * Copyright (c) 2015 Sam Johnson
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

public class Main {
    /**
     * Returns the first integer that is larger than the given float.
     * Has undefined behavior for NaN and the infinities.
     * 
     * @param f A finite float.
     * @return The first integer that is larger than f.
     */
    public static int ceil(float f) {
        int i = (int) f;
        if (i < f)
            i++;
        return i;
    }
}

Related

  1. ceil(double x, double y)
  2. ceil(double[] array)
  3. ceil(final double num)
  4. ceil(final double num)
  5. ceil(float f)
  6. ceil(float f)
  7. ceil(float floatNumber)
  8. ceil(float pX)
  9. ceil(float value)