Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

I will show you the criteria for the assignment in the pdf file.

I will show you the criteria for the assignment in the pdf file…but

I am having issue with the fourth part of the assignment..I have labeled my java code for this part CMIS 242 project 1…I  need this part to look exactly like hers..I am running blank on how to get data from two separate years..also..she wants the job title of the person beside their name..I can only get employee to go their..I need salesman and executive..how do I do that..

public class CMIS242Project1 {public static void main(String[] args) {// create an array of objects of type EmployeeEmployee[] employees = new Employee[5];// initialize arrayemployees[0] = new Employee(“John Smith”, 2000);employees[1] = new Salesman(“Sona Bartelt”, 2900, 77000);employees[2] = new Executive(“Michelle Caulder”, 5000, 35);employees[3] = new Employee(“Edie Potter”, 5300);employees[4] = new Executive(“Tanisha Bevill”, 6000, 57);double total = 0;// print employee’s infofor (int i = 0; i < employees.length; i++) {System.out.println(employees[i].toString());total += employees[i].annualSalary();}// calculate average salarydouble average = total / 5.0;System.out.println(“Average salary: $” + average);}}
Background image of page 1
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"