46 lines
1.9 KiB
C++
46 lines
1.9 KiB
C++
|
// fig04_04.cpp
|
||
|
// Compound-interest calculations with for.
|
||
|
#include <iostream>
|
||
|
#include <iomanip>
|
||
|
#include <cmath> // for pow function
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
// set floating-point number format
|
||
|
cout << fixed << setprecision(2);
|
||
|
|
||
|
double principal{1000.00}; // initial amount before interest
|
||
|
double rate{0.05}; // interest rate
|
||
|
|
||
|
cout << "Initial principal: " << principal << "\n";
|
||
|
cout << " Interest rate: " << rate << "\n";
|
||
|
|
||
|
// display headers
|
||
|
cout << "\nYear" << setw(20) << "Amount on deposit" << "\n";
|
||
|
|
||
|
// calculate amount on deposit for each of ten years
|
||
|
for (int year{1}; year <= 10; ++year) {
|
||
|
// calculate amount on deposit at the end of the specified year
|
||
|
double amount{principal * pow(1.0 + rate, year)} ;
|
||
|
|
||
|
// display the year and the amount
|
||
|
cout << setw(4) << year << setw(20) << amount << "\n";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/**************************************************************************
|
||
|
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
|
||
|
* Pearson Education, Inc. All Rights Reserved. *
|
||
|
* *
|
||
|
* DISCLAIMER: The authors and publisher of this book have used their *
|
||
|
* best efforts in preparing the book. These efforts include the *
|
||
|
* development, research, and testing of the theories and programs *
|
||
|
* to determine their effectiveness. The authors and publisher make *
|
||
|
* no warranty of any kind, expressed or implied, with regard to these *
|
||
|
* programs or to the documentation contained in these books. The authors *
|
||
|
* and publisher shall not be liable in any event for incidental or *
|
||
|
* consequential damages in connection with, or arising out of, the *
|
||
|
* furnishing, performance, or use of these programs. *
|
||
|
*************************************************************************/
|