此函数用于舍入给定值并将其转换为long long整数。
llround - 语法
假设数字是“ x”。语法为:
long long int llround(data_type x);
llround - 参数
x :可以是double或float的值。
llround - 返回值
它返回x的舍入值。该函数的返回类型是long long整数。
llround - 例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=50.8;
std::cout <<"The value of x is :" <<x<< std::endl;
std::cout << "The rounded value of x is :"<<llround(x) << std::endl;
return 0;
}
输出:
The value of x is :50.8 The rounded value of x is :51