C++ Math nexttoward()函数

C++ Math nexttoward()函数

nexttoward()函数表示特定方向上的下一个可表示值。nextafter()和nexttoward()函数都可以实现相似的功能并返回相同的值。它们之间的唯一区别在于语法。

语法

float nexttoward(float from, long double to);
 double nexttoward(double from, long double to);
long double nexttoward(long double from, long double to);
double nexttoward(integral from, long double to);

参数

( from , to ) : 这些是浮点数值。

返回值

  • 如果 ‘from’ 等于 ‘to’,则返回 ‘from’ 的值。
  • 如果没有错误发生,则返回 ‘from’ 的下一个可表示的值。

示例

让我们看一个简单的示例。

#include 
#include
using namespace std;

int main()
{
        long double from=0.0;
        double to= -1.0;
cout<<"Values of from and to are:"<

输出:

Values of from and to are:0, -1
-3.6452e-4951

在上面的示例中,’from’和’to’是不同类型的。nexttoward() 函数返回值为 -3.6452e-4951。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程