当前位置: C语言 -- 标准库 -- <math.h> -- roundl

roundl函数


概要:
#include <math.h>
long double roundl(long double x);

描述:

该函数将参数x舍入为浮点形式表示的最近整数值;如果参数x位于两个整数的正中间,将向远离0的方向舍入。


参数:
long double x

参数为一个long double类型的浮点数。


返回值:

函数返回浮点形式表示的舍入得到的整数值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
/*函数roundl范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    printf("roundl(2.3L) = %.2Lf\n", roundl(2.3L));
    printf("roundl(2.7L) = %.2Lf\n", roundl(2.7L));
    printf("roundl(2.5L) = %.2Lf\n", roundl(2.5L));
    printf("roundl(-2.5L) = %.2Lf\n", roundl(-2.5L));

    return 0;
}


输出:

roundl(2.3L) = 2.00

roundl(2.7L) = 3.00

roundl(2.5L) = 3.00

roundl(-2.5L) = -3.00


相关内容:
round double类型参数舍入为最近整数值的函数。
roundf float类型参数舍入为最近整数值的函数。