NEED Help with org/420. My week 3 paper that you must go off of is in attachments. ((NEED BEFORE 4PM CENTRAL))

profilemosthated01
annualcompensation.java

/* * This program calculates the total annual compensation * of a salesperson. It will ask the user to enter annual sales, * and it will display the total annual compensation for the * salesperson. */ //Program: AnnualCompensation.java //Version 1.0 //Kelley, Noah D. //PRG/420 //07-23-2014 public class AnnualCompensation { private double fixedSalary;//Declares a double variable named fixed salary. private double annualSales;//Declares a double variable named annual sales. private double commission; //Declares a double variable named comission. public AnnualCompensation() { // The salesperson earns the fixed yearly salary of $75,000 fixedSalary = 75000.00; } // The salesperson's yearly sales will be displayed public double getayearlySales(){ return annualSales; } // Create a Scanner object to read input. public void readData(){ Scanner in = new Scanner(System.in); System.out.print("Please type in your annual sales: "); // The program will the print the salesperson's annual sales annualSales = in.nextInt(); } void calculateCommission() { // Indicates salesperson's commission is 8% of thier annual sales commission = 0.8 * annualSales; } public double getCommission(){ return commission; } // The program will display salesperson's total annual compensation public double getTotalAnnualCompensation (){ return fixedSalary + getCommission(); } }