System.out.println("-Add Employee-"); System.out.println("Name: "); String tempName = s.next(); System.out.println("ID: "); int tempID = s.nextInt(); System.out.println("Type: "); String tempType = s.next(); System.out.println("Job Percentage: "); int tempPerc = s.nextInt(); System.out.println("Salary: "); double tempSalary = s.nextDouble(); System.out.println("Chain Name: "); String tempChain = s.next(); System.out.println("Store ID: "); int tempStore = s.nextInt();