當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ ceil()用法及代碼示例


C++ ceil() 函數

ceil() 函數是 cmath 頭文件的庫函數,用於求給定數的四舍五入(向上)值,它接受一個數並返回不小於給定數的最小整數值。

ceil() 函數的語法:

    ceil(x);

參數: x– 是要四舍五入其值的數字。

返回值: double– 它返回 double 類型的值,它是給定數字的四舍五入值。

例:

    Input:
    float x = 2.3;
    Function call:
    ceil(x);
    Output:
    3

    Input:
    float x = 3.8
    Function call:
    ceil(x);
    Output:
    4

C++代碼演示ceil()函數的例子

// C++ code to demonstrate the example of 
// ceil() function

#include <iostream>
#include <cmath>
using namespace std;

// main() section
int main()
{
    float x;
    
    //input the number
    cout<<"Enter a float value:";
    cin>>x;
    
    //printing the round up value
    cout<<"ceil("<<x<<"):"<<ceil(x)<<endl;

    return 0;
}

輸出

First run:
Enter a float value:2.3 
ceil(2.3):3

Second run:
Enter a float value:3.8 
ceil(3.8):4 

Third run:
Enter a float value:-2.3
ceil(-2.3):-2 

Fourth run:
Enter a float value:-3.8
ceil(-3.8):-3 


相關用法


注:本文由純淨天空篩選整理自 ceil() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。