java amortization table?
Write a program that creates a loan amortization table. The user of the program will supply values for Initial Loan Principal, Annual Percentage Rate and Monthly Payment. The program should print out the appropriate amortization table. The table should have headings for the month number, the monthly payment, monthly interest amount, monthly principal, remaining principal, and total interest paid so far. The program will run starting at month 1 until finally the remaining principle is less than the monthly payment. Then the next month will be the last month and the payment may be different that what it has been.
I don’t really know where to start, help please! thanks so much!!!
are you in CS 1336 at UTD?
I have some of this completed… you need to use the increment operator and a loop. I’m using a do-while loop.