c语言 函数的参数传递示例_nextafter()函数以及C ++中的示例

c语言 函数的参数传递示例

C ++ nextafter()函数 (C++ nextafter() function)

nextafter() function is a library function of cmath header, it is used to get the next representable value after the given first number in the direction of given second number, it accepts two numbers (x, y) and returns the next representable value after x in the direction of y.

nextafter()函数cmath标头的库函数,用于在给定第二个数字的方向上获取给定第一个数字之后的下一个可表示值,它接受两个数字( x,y )并返回之后的下一个可表示值x沿y方向。

Syntax of nextafter() function:

nextafter()函数的语法:

    nextafter(x, y);

Parameter(s): x, y – are the numbers to be used to find the next representable value of x in the direction of y.

参数: x,y –是用于在y方向上找到x的下一个可表示值的数字。

Return value: float/double/long double – based on the input type, it returns the next representable value of x.

返回值: float / double / long double-根据输入类型,它返回x的下一个可表示值。

Example:

例:

    Input:
    float x = 0.0;
    float y = 0.1;

    Function call:
    nextafter(x,y);    
    
    Output:
    1.4013e-45

C ++代码演示nextafter()函数的示例 (C++ code to demonstrate the example of nextafter() function)

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

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

// main() section
int main()
{
    float x;
    float y;
    
    x = 0.0;
    y = 0.1;
    cout<<"nextafter("<<x<<","<<y<<"): "<<nextafter(x,y);
    cout<<endl;

    x = 0.0;
    y = 1.1;
    cout<<"nextafter("<<x<<","<<y<<"): "<<nextafter(x,y);
    cout<<endl;    

    x =  0.0;
    y = -1.0;
    cout<<"nextafter("<<x<<","<<y<<"): "<<nextafter(x,y);
    cout<<endl;

    x = 0.1;
    y = 0.1;
    cout<<"nextafter("<<x<<","<<y<<"): "<<nextafter(x,y);
    cout<<endl;
   
    return 0;
}

Output

输出量

nextafter(0,0.1): 1.4013e-45
nextafter(0,1.1): 1.4013e-45
nextafter(0,-1): -1.4013e-45
nextafter(0.1,0.1): 0.1

Reference: C++ nextafter() function

参考: C ++ nextafter()函数

翻译自: https://www.includehelp.com/cpp-tutorial/nextafter-function-with-example.aspx

c语言 函数的参数传递示例

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值