About 190,000 results
Open links in new tab
  1. Math.ceil () - JavaScript | MDN

    Jul 10, 2025 · The Math.ceil() static method always rounds up and returns the smallest integer greater than or equal to a given number.

  2. Floor and ceiling functions - Wikipedia

    In mathematics, the floor function is the function that takes as input a real number x, and gives as output the greatest integer less than or equal to x, denoted ⌊x⌋ or floor (x). Similarly, the ceiling …

  3. CEIL Definition & Meaning - Merriam-Webster

    The meaning of CEIL is to furnish (something, such as a wooden ship) with a lining.

  4. std::ceil, std::ceilf, std::ceill - cppreference.com

    Oct 15, 2023 · The library provides overloads of std::ceil for all cv-unqualified floating-point types as the type of the parameter.(since C++23) (See math-floating-point and deduced-simd-t for …

  5. Ceil and Floor functions in C++ - GeeksforGeeks

    May 16, 2025 · ceil () function in C++ returns the smallest integer that is greater than or equal to the value passed as the input argument. Syntax: Example: Ceil of 2.3 is : 3. Ceil of -2.3 is : -2. …

  6. JavaScript Math ceil () Method - W3Schools

    Description The Math.ceil() method rounds a number rounded UP to the nearest integer.

  7. ceil - C++ Users

    Rounds x upward, returning the smallest integral value that is not less than x. Header <tgmath.h> provides a type-generic macro version of this function. Value to round up. The smallest …

  8. JavaScript: Math ceil () function - TechOnTheNet

    This JavaScript tutorial explains how to use the math function called ceil () with syntax and examples. In JavaScript, ceil () is a function that is used to return the smallest integer value …

  9. ceil, ceilf, ceill | Microsoft Learn

    Dec 1, 2022 · In a C program, unless you're using the <tgmath.h> macro to call this function, ceil always takes and returns a double. If you use the <tgmath.h> ceil() macro, the type of the …

  10. ceil, ceilf, ceill - cppreference.com

    May 23, 2024 · 4) Type-generic macro: If arg has type longdouble, ceill is called. Otherwise, if arg has integer type or the type double, ceil is called. Otherwise, ceilf is called.