NeedAssistance
Currently I am working on adding the following line in bold but getting error expected ";" on line 27
import java.io.*;
import java.util.Date;
import java.text.DecimalFormat;
public class Mortgage5
{
public static void main(String[] args)
{
Date currentDate = new Date(); //Date constructor
DecimalFormat decimalPlaces = new DecimalFormat("$###,###.##");
//declaring variables
final double PRINCIPLE = 200000;
final double INTEREST = .0575/12;
final double TERM = 12*30;
//declaring variables
final double MONTHLY =PRINCIPLE*(INTEREST/(1-Math.pow(1+INTEREST, -TERM)));
//displaying variables
System.out.println("\t\t" + currentDate);
System.out.println("\t\tPrinciple or Loan Amount: " + decimalPlaces.format(PRINCIPLE));
System.out.println("\t\tInterest Rate: " + (INTEREST));
System.out.println("\t\tThe Term of Loan (in months): " + (TERM));
System.out.println("\t\tThe Monthly Payment is: " + decimalPlaces.format(MONTHLY));
System.out.println("\t\tThe Balence - Your Payment is: " + decimalPlaces.format(PRINCIPLE*INTEREST*TERM)-MONTHLY));
}
}
Any suggestions? PLEASE

