×

C++ Tutorial

C++ Data types

C++ Operators & Keywords

C++ Conditional Statements

C++ Functions

C++ 'this' Pointer, References

C++ Class & Objects

C++ Constructors & Destructors

C++ Operator overloading

C++ 11 (Advance C++)

C++ Preparation

C++ Header Files & Functionsr

Data Structure with C++

C++ - Miscellaneous

C++ Programs

llround() function with example in C++

C++ llround() function: Here, we are going to learn about the llround() function with example of cmath header in C++ programming language.
Submitted by IncludeHelp, on April 27, 2019

C++ llround() function

llround() function is a library function of cmath header, it is used to round the given value and casts to a long long integer, it accepts a number and returns the integer (long long int) value that is nearest to the number (with halfway cases).

Syntax

Syntax of llround() function:

llround(x);

Parameter(s)

x – is the number to round nearest to zero with halfway cases.

Return value

long long int – it returns long long int type value that is the rounded value of the number x.

Sample Input and Output

Input:
float x = 2.3;    
Function call:
llround(x);    
Output:
2

Input:
float x = 2.8;
Function call:
llround(x);    
Output:
3

Example

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

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

// main() section
int main()
{
    float x;
    
    x = 15.3;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;

    x = 15.5;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;

    x = 15.8;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;

    x = -15.3;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;

    x = -15.5;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;

    x = -15.8;
    cout<<"llround("<<x<<"): "<<llround(x)<<endl;    

    return 0;
}

Output

llround(15.3): 15
llround(15.5): 16
llround(15.8): 16
llround(-15.3): -15
llround(-15.5): -16
llround(-15.8): -16


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.