Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1.         if (menuSelection == 4) {
  2.             cout << "Thank you for using the Financial Calculator!\n";
  3.             cout << endl;
  4.             cout << "Here is what you have entered in for today:\n\n";
  5.             cout << "Loan Amounts | Interest Rates | Loan Lengths | Payment Amounts";
  6.             cout << "_______________________________________________________________";
  7.            
  8.             for (int i = 0; i < financialComponents.size(); i + 4)
  9.                 cout << "$"; financialComponents[0]; "$"; financialComponents[1]; "$"; financialComponents[2]; "$"; financialComponents[3]; "\n";
  10.  
  11.             system("pause");
  12.             return (0);
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement