C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Math remainder()The function finds the floating point remainder of numerator/denominator (rounded to the nearest integer value). Formulae of remainder :Remainder = numerator - (r*denominator) where, r = numerator/denominator and it is rounded to the nearest integral value. SyntaxConsider a numerator 'n' and denominator 'd'. Syntax would be: return_type remainder(data_type n,data_type d); Note: The return_type can be float, double or long double.Parametern: Value of the numerator. d: Value of the denominator. Return valueIt returns the floating point remainder n/d. Example 1Let's see a simple example. #include Output: Values of numerator and denominator are :5.7 , 8.9 Remainder is :-3.2
Next TopicC++ Math Functions
|