Java Project:
Write a menu driven program, which would compute compound interest and a monthly payment for a loan. The user will be given a choice to display the info on the screen or to a file.
Â
Menu will be the following:
Enter (1) to calculate your loan monthly payment
Enter (2) to calculate your loan monthly payment & write to a file
Â
Â
Tips:Â Compound Interest Formula
Â
A = P (1 + r / n) ^ nt
Â
PÂ = principal amount (the initial amount you bo
ow or deposit)
 = annual rate of interest (as a decimal)
t = number of years the amount is deposited or bo
owed for.
AÂ = amount of money accumulated after n years, including interest.
n  =  number of times the interest is compounded per yearÂ
Â
You can visit here for further assistance -Â http:
www.calculatorsoup.com/calculators/financial/compound-interest-calculator.php
Bottom line, you will be displaying something like the following:
Bo
ower’s Name:
Bo
ower’s Address:
Bo
ower’s Phone:
Loan Amount:
Interest Rate (APR):
Fixed Monthly Payment:
Â
Note – always with the option to display in a file or on the screen.