Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

Financial Calculator: You will develop a program for a bank that will allow it to process loans for customers. The user will enter information, such as interest rate, length of loan, amount borrowed,...

1 answer below »
Financial Calculator: You will develop a program for a bank that will allow it to process loans for customers. The user will enter information, such as interest rate, length of loan, amount borrowed, or desired payment, and the program will compute the missing information. It will also be able to display a report showing the amortization schedule for the loan. Customer data should be able to be saved and retrieved from a file or files.

Week 3

Add at least one conditional expression to your program.

For the loan calculator, the program might ask the user if he or she wants to solve for monthly payment, loan amount, length of loan, or interest rate.

Week 4

Add loops to validate data. Add a menu to your program that allows users to use the various features or exit the program.

Week 5

Add arrays to your program to handle more data.


Your final project must include all of the following. Your initial submission will start simple, and you will add features each week.

  • Input and output
  • Use of variables
  • Use of conditional statements
  • Use of loops
  • Use of modules
  • Use of arrays
  • Ability to save and retrieve data
For this project, you will decide on a program to write and develop it throughout the course.
Answered Same Day Jul 31, 2021

Solution

Aditya answered on Aug 02 2021
133 Votes
#include using namespace std;
int main()
{
double principle[100],rate[100],si[100];
int time[100],counter=0,choice;
while(true)
{
cout
"\n1.Calculate ";
cout
"\n2.Display";
cout
"\n3.Exit";
cout
"\n\nEnter Your Choice : ";
cin
choice;
switch(choice)
{
case 1:
while(true)
{
cout
"\nEnter Principle : ";
cin
principle[counter];
if(principle[counter]>0)
{

eak;
}
else
{
cout
"\nEnter principle greater than 0\n";
}
}
while(true)
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here