Checkpoints 1) Include name, e-mail, and lab# as comments in the code and also include code to output this information to the output. 2) Minimum of three (3) comments (including Pre/Post) in each...



  • Checkpoints


1) Include name, e-mail, and lab# as comments in the code and also include code to output this information to the output.


2) Minimum of three (3) comments (including Pre/Post) in each function. Note that if the parameter is a reference to (i.e. address of) a value, then the Pre comment must so state.


3) User defined constants for property tax rate, cost of utilities, and cost of insurance. Use non-global memory constant for percent of down payment.


4) Use exactly one function separate from main for input.


5) Call a calculation function from main which handles all calculations. This function needs to call a sub-function (another function) to calculateexactlythe following and no more: amount of down payment, amount of the loan, amount of monthly mortgage payment.


6) Use exactly one function called from main for output.


7) Output must be formatted exactly as shown on lab write-up with decimal points lined up. Output must be copied to a separate file.


8) All functions (other than main() & your signature function) must use prototype style.


9) Use reference variables when necessary and ONLY WHEN NECESSARY.



  • Test data(see bankrate.com or use Excel & pmt()to check your answers)


Set 1 – $600,000, 5%, 20


Set 2 – $400,000, 4.2%, 30


OUTPUT<br>All values input and used in the calculations as well as the monthly payment and total<br>monthly house cost need to be output as follows:<br>MONTHLY COST OF HOUSE<br>SELLING PRICE<br>$XXXXXX.XX<br>DOWN PΑΥΜENT<br>XXXXXX.XХ<br>AMOUNT OF LOAN<br>XXXXXX.XX<br>INTEREST RATE<br>XX.X%<br>ΤAX RΑΤΕ<br>XX.X%<br>DURATION OF LOAN (YEARS)<br>XX<br>ΜΟΝΤΗLY PPAYΜΕΝΤ<br>MORTGAGE<br>XXXX.ХX<br>UTILITIES<br>XXXX.XX<br>PROPERTY TAXES<br>XXXX.XX<br>INSURANCE<br>ХXXX.XX<br>$ XXXXX.XX<br>

Extracted text: OUTPUT All values input and used in the calculations as well as the monthly payment and total monthly house cost need to be output as follows: MONTHLY COST OF HOUSE SELLING PRICE $XXXXXX.XX DOWN PΑΥΜENT XXXXXX.XХ AMOUNT OF LOAN XXXXXX.XX INTEREST RATE XX.X% ΤAX RΑΤΕ XX.X% DURATION OF LOAN (YEARS) XX ΜΟΝΤΗLY PPAYΜΕΝΤ MORTGAGE XXXX.ХX UTILITIES XXXX.XX PROPERTY TAXES XXXX.XX INSURANCE ХXXX.XX $ XXXXX.XX
Write a C++ program to calculate the monthly cost of a house given the selling price,<br>annual rate of interest, and number of years for the loan. The monthly mortgage payment<br>may be computed using the following formula:<br>payment =<br>a*i(1+i)ª<br>(1 + i)ª – 1 where a=amount of loan<br>i=rate of interest per compounding period<br>(annual rate/12)<br>n=number of compounding periods (yrs*12)<br>Assume that the down payment will be 20% of selling price, yearly tax rate is 1.25% of<br>selling price, utilities will be approximately $300.00 per month, and insurance will be<br>$550.00 per year.<br>DATA<br>Use preprocessor statements to set the tax rate, cost of insurance, and the cost of utilities.<br>Set the percentage of down payment as a non-global memory constant. Prompt the user<br>for the selling price, the rate of interest, and the number of years for the loan.<br>CALCULATIONS<br>Use at least four functions in addition to main: a function to input all data, a function<br>which handles all computations including invoking a subfunction to compute the down<br>payment, amount of loan, and mortgage payment, and, finally, one to output the results.<br>

Extracted text: Write a C++ program to calculate the monthly cost of a house given the selling price, annual rate of interest, and number of years for the loan. The monthly mortgage payment may be computed using the following formula: payment = a*i(1+i)ª (1 + i)ª – 1 where a=amount of loan i=rate of interest per compounding period (annual rate/12) n=number of compounding periods (yrs*12) Assume that the down payment will be 20% of selling price, yearly tax rate is 1.25% of selling price, utilities will be approximately $300.00 per month, and insurance will be $550.00 per year. DATA Use preprocessor statements to set the tax rate, cost of insurance, and the cost of utilities. Set the percentage of down payment as a non-global memory constant. Prompt the user for the selling price, the rate of interest, and the number of years for the loan. CALCULATIONS Use at least four functions in addition to main: a function to input all data, a function which handles all computations including invoking a subfunction to compute the down payment, amount of loan, and mortgage payment, and, finally, one to output the results.
Jun 07, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here