dollar decimal
Finance functions
Controller: CodeCogs
Interface
C++
Excel
Dollar Decimal
doubledollar_decimal( | double | fracPrice | |
int | frac | ) |
Example 1
#include <stdio.h> #include <codecogs/finance/banking/dollar_decimal.h> int main() { double d = Finance::Banking::dollar_decimal(1.3, 8); printf("The fractional price $1 3/8 as decimal = %.3f\n", d); return 0; }
OutputThe fractional price $1 3/8 as decimal = 1.375
Parameters
fracPrice is the price, with the value after the decimal being the numerator of the fraction frac the denominator of the fraction
Returns
- a double representing the decimal price
Authors
- James Warren (April 2005)
Source Code
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.