I did allright with the program, but now I have to add an array of 7 years payment amount @ 5.35%, 15 years payment amount @ 5.5%, and I have yet to be ableto put this into a decimal place of two. This has been a very complicated addition to an easy program. How can I do this?
import java.text.DecimalFormat;
public class MortgagePayment
{
public static void main(String args[]) throws Exception
{
//declare and construct variables
int loanAmt = 200000; // this is the principal loan...
Read Full Story