Write a C++ program that asks the user to enter the price of a car (real), the down
payment (real) and the number of years for the loan (integer). Calculate and output
the monthly payment (real) of that car. Assume the sales tax rate is 7% and an
interest rate is 9%. Use constant declarations for these rates.
Use the following formulae to perform the calculations:
tax amount = price of car * sales tax rate
total cost of car = price of car + tax amount
borrowed amount = total cost of car ‐ down payment
interest amount = borrowed amount * interest rate
loan amount = borrowed amount + interest amount
monthly payment = loan amount / number of months of loan

To get input from the user you can use "cin" function.

To print out results to screen you can use "cout" function.

To "Use constant declarations for these rates" you can use the const keyword.

Here is an example.

const int multiplier = 5;

int value;

cout << "Enter an integer :\n";

cin >> value;

cout << value << " x " << multiplier << " = " << value * multiplier;

From that, you should be able to do your homework.

commented: thanks what is the result you went means hot flow program +0
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.