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


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


C++ 中的nextafter() 函數接受兩個參數並返回 x 之後沿 y 方向的下一個可表示值。

該函數在<cmath> 頭文件中定義。

nextafter() 原型 [從 C++ 11 標準開始]

double nextafter(double x, double y);
float nextafter(float x, float y);
long double nextafter(long double x, long double y);
Promoted nextafter(Type1 x, Type2 y); // Additional overloads

從 C++11 開始,如果傳遞給 nextafter() 的任何參數是 long double ,則返回類型 Promotedlong double 。如果不是,則返回類型 Promoteddouble

參數:

  • x: 基礎值。
  • y: 返回值的近似值。

返回:

nextafter() 函數返回 x 之後沿 y 方向的下一個可表示值。

示例 1:nextafter() 函數在 C++ 中如何工作?

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    double x = 0.0, y = 1.0;

    double resultInDouble = nextafter(x,y);
    cout << "nextafter(x, y) = " << resultInDouble << endl;

    return 0;
}

運行程序時,輸出將是:

nextafter(x, y) = 4.94066e-324

示例 2:nextafter() 函數用於不同類型的參數

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    float y = 1.0;
    double x = INFINITY;

    double result = nextafter(x,y);
    cout << "nextafter(x, y) = " << result << endl;

    return 0;
}

運行程序時,輸出將是:

nextafter(x, y) = 1.79769e+308

相關用法


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