I need HELP ASAP with this week 3 assignment! I need it to follow STRICK RULES AS POSTED. I included the WEEK 2 attachments to go off of. ((IMPORTANT MUST GO BY DETAILED INSTRUCTION AND SENT TO ME IN A ZIP FILE SO I CAN SUBMIT IT)))

profilemosthated01
salesman.java

package project_java; //Salesman class public class Salesman { int annualSales; double AnnualfixedSalary=200000; double commission; double annualCompensation; //Constructor that initializes the Annual Sales Salesman(int sales) { this.annualSales=sales; } //Method that returns the Annual Compensation public double getAnnualCompensation() { commission=0.1*annualSales; annualCompensation=AnnualfixedSalary+commission; return (annualCompensation); } }