C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Math nearbyint()The function rounds off the given value to a nearby integral value by using the current rounding method. The current rounding method is described by fegetround. SyntaxSuppose a number is 'x'. Syntax would be: return_type nearbyint(data_type x); Note: The return_type can be float, double or long double.Parameterx: The value can be float or double. Return valueIt returns the rounded value of x to a nearby integral value by using the rounding method. Example 1Let's see a simple example. #include Output: Value of x is:2.3 Rounding to nearby,value is :2
Next TopicC++ Math Functions
|