This is the error I keep getting and unsure how to correct it.
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - illegal start of expression at salescommission.SalesCommission.main(SalesCommission.java:27)
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package salescommission;
/**
*
* @author Michael
*/
public class SalesCommission {
/**
* @param args the command line arguments
*/
public static void main(String[] args){
// public class SalesCommission {
// fixed salary variable
double fixedSalary;
// variable of the value of sale person's annual sales
double annualSales;
//the commission earned
double commission;
private final double annualSales;
private double commission;
private double fixedSalary;
public SalesCommission(double annualSales){
this.annualSales=annualSales;
double commission = 0.25*annualSales; //The current commission 25% of total sales.
int fixedSalary = 75000; // set fixed salary is 75000$
}
public double getTotalAnnualCompensation(){// calculate The total annual compensation is the fixed salary plus the commission earned
return fixedSalary+commission;
}
}