How to create a loop for below code?

Need help with Java code!!!?

  • The code I have compiles but when I run it I get: Salesperson Sales -------------------- 1 0 2 4 3 5 Salesperson 3 had the highest sale with $5.00 Salesperson 0 had the lowest sale with $0.00 Here are the directions I have and my code. Help please!!!! File Sales.java contains a Java program that prompts for and reads in the sales for each of 5 salespeople in a company. It then prints out the id and amount of sales for each salesperson and the total sales. Study the code, then compile and run the program to see how it works. Now modify the program as follows: 1. Compute and print the average sale. (You can compute this directly from the total; no loop is necessary.) 2. Find and print the maximum sale. Print both the id of the salesperson with the max sale and the amount of the sale, e.g., "Salesperson 3 had the highest sale with $4500." Note that you don't need another loop for this; you can do it in the same loop where the values are read and the sum is computed. 3. Do the same for the minimum sale. 4. After the list, sum, average, max and min have been printed, ask the user to enter a value. Then print the id of each salesperson who exceeded that amount, and the amount of their sales. Also print the total number of salespeople whose sales exceeded the value entered. 5. The salespeople are objecting to having an id of 0—no one wants that designation. Modify your program so that the ids run from 1–5 instead of 0–4. Do not modify the array—just make the information for salesperson 1 reside in array location 0, and so on. 6. Instead of always reading in 5 sales amounts, at the beginning ask the user for the number of sales people and then create an array that is just the right size. The program can then proceed as before. // ****************************************… // Sales.java // // Reads in and stores sales for each of 5 salespeople. Displays // sales entered by salesperson id and total sales for all salespeople. // // ****************************************… import java.util.Scanner; import java.text.NumberFormat; public class Sales { public static void main(String[] args) { int SalesPeople=0; int sum; int max=0; int min=0; int maxID = 0; int minID = 0; NumberFormat fmt = NumberFormat.getCurrencyInstance(); Scanner scan = new Scanner(System.in); System.out.println("Enter number of sales people: "); SalesPeople = scan.nextInt(); int[]sales = new int[SalesPeople]; for (int i=0+1; i < sales.length; i++) { System.out.print("Enter sales for salesperson " + (i) + ": "); sales[i] = scan.nextInt(); } System.out.println("\nSalesperson Sales"); System.out.println("----------------… sum = 0; for (int i=0; i<sales.length; i++) { System.out.println(" " + (i+1) + " " + sales[i]); sum += sales[i]; if (sales[i] > max) { max = sales[i]; maxID = i+1; } if (sales[i] < min) { min = sales[i]; minID = i+1; } } System.out.println("\nSalesperson " + maxID + " had the highest sale with " + fmt.format(max)); System.out.println("Salesperson " + minID + " had the lowest sale with " + fmt.format(min)); System.out.println("Total sales: " + sum); System.out.println("Average sales: " + sum / SalesPeople); System.out.println("\nEnter a value: "); int Value = scan.nextInt(); int salescount = 0; for (int i = 0; i < sales.length; i++) { if (sales[i] > Value) System.out.println("ID: " + (i+1) + "\tSale: " + fmt.format(sales[i])); } salescount++; System.out.println("\nTotal number of Salespeople: " + salescount); } }

  • Answer:

    for (int i=0+1; i < sales.length; i++) { System.out.print("Enter sales for salesperson " + (i) + ": "); sales[i] = scan.nextInt(); } With the 0+1 you are never looking to the salesperson 0. The first number entered is going to sales person 1.

fun_girl... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.