Or login with:
| doubledeprecStraight( | double | cost | |
| double | salvage | ||
| int | life | ) |
#include <iostream> #include <codecogs/finance/accounting/deprecstraight.h> int main(int argc, char *argv[]) { printf("Depreciation of an asset purchased for 30000,"); printf("and salvage for 7500 after 10 years is:\n"); std::cout<<Finance::Accounting::deprecStraight(30000, 7500, 10); std::cout<<std::endl; return 0; }Output:
Depreciation of an asset purchased for 30000, and salvage for 7500 after 10 years is: 2250
| cost | The initial cost of the asset. |
| salvage | The value at the end of the depreciation. |
| life | The number of periods over which the asset is being depreciated, i.e. the <em>useful life</em> of the asset. |
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.
You must login to leave a messge