请输入您要查询的百科知识:

 

词条 _nextafter
释义

函数简介

函数原型: double _nextafter( double x, double y );

所属库: float.h

函数功能: 返回参数x在参数y方向上可以表示的最接近的数值,若x等于y,则返回x

相关函数: ceil、floor

程序示例

#include <stdio.h>

#include <float.h>

int main( void )

{

printf("%f\", _nextafter(6.0, 6.0));

printf("%f\", _nextafter(5.0, 6.0));

printf("%f\", _nextafter(5.0, 4.0));

printf("%f\", _nextafter(4.9, 6.0));

printf("%f\", _nextafter(4.9, 4.0));

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 9:40:22