Joined: Sat Jun 23, 2007 12:44 pm Posts: 8 Has thanked: 0 time Have thanks: 0 time
The following file has the problem and the solution, however I can getting the following error "cannot find symbol variable math" when compiling. Where am I going wrong at? Bama
(Sales Commissions) Use a one-dimensional array to solve the following problem: A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9% of their gross sales for that week. For example, a salesperson who grosses $5000 in sales in a week receives $200 plus 9% of $5000, or a total of $650. Write an application (using an array of counters) that determines how many of the salespeople earned salaries in each of the following ranges (assume that each salesperson's salary is truncated to an integer amount): 1. $200-299 2. $300-399 3. $400-499 4. $500-599 5. $600-699 6. $700-799 7. $800-899 8. $ 900-999 9. $1000 and over Summarize the results in tabular format
Code:
// Determining how many sales person earn salaries public class Salary { public static void main (String args []) { // intializer list specifies the integers amount double salary [] = { 0, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200}; int value []= new int [11]; System.out.printf( "%s:%20s:\n", "Index", " Value"); // column heading
for (int index = 0; index < (salary.length); index++) { if (10<=(int)math.floor(((salary[index]*(.9)+200)*.01))) ++value[10];
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
The class is called Math no math ,
Code:
public class Salary { public static void main (String args []) { // intializer list specifies the integers amount double salary [] = { 0, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200}; int value []= new int [11]; System.out.printf( "%s:%20s:\n", "Index", " Value"); // column heading
for (int index = 0; index < (salary.length); index++) { if (10<=(int)Math.floor(((salary[index]*(.9)+200)*.01))) ++value[10];
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
bama
Question subject: Re: Salary of each sales person
Posted: Sat Jun 23, 2007 2:12 pm
Joined: Sat Jun 23, 2007 12:44 pm Posts: 8 Has thanked: 0 time Have thanks: 0 time
Your reply is confusing. The class is salary and not math. Please explain further. Thanks
msi_333
Question subject: Re: Salary of each sales person
Posted: Sat Jun 23, 2007 2:24 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
In your code you wrote :
Code:
if (10<=(int)math.floor(((salary[index]*(.9)+200)*.01)))
and must be
Code:
if (10<=(int)Math.floor(((salary[index]*(.9)+200)*.01)))
you used the class "math" .Must be "Math".
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
bama
Question subject: Re: Salary of each sales person
Posted: Mon Jun 25, 2007 6:38 pm
Joined: Sat Jun 23, 2007 12:44 pm Posts: 8 Has thanked: 0 time Have thanks: 0 time
Hello are you still there?
sochenda
Question subject: Re: Salary of each sales person
Posted: Mon Feb 14, 2011 6:17 am
Joined: Mon Feb 14, 2011 6:13 am Posts: 1 Has thanked: 0 time Have thanks: 0 time
import java.util.*; public class Test{ public static void main(String args[]){ Scanner input = new Scanner(System.in); System.out.print("Enter number of Employee: "); final int N = input.nextInt(); double sale[] = new double [N]; double [] wage = new double[N]; for (int i =0; i<sale.length; i++){ System.out.print("Enter sale for employer "+(i+1)+": "); sale[i]=input.nextDouble(); wage[i]=getWage(sale[i]);
input.nextLine(); } String [] header ={"$200-299","$300-399","$400-499","$500-599","$600-699","$700-799","$800-899","$900-999","$1000 and over"}; int counter [] = new int [9]; for( int i = 0; i < wage.length; i++){ System.out.println(wage[i]); if (wage[i] <300){ counter[0]++; }else if (wage[i] >= 300 && wage[i] < 400){ counter[1]++; }else if (wage[i] >= 400 && wage[i] < 500){ counter[2]++; }else if (wage[i] >= 500 && wage[i] < 600){ counter[3]++; }else if (wage[i] >= 600 && wage[i] < 700){ counter[4]++; }else if (wage[i] >= 700 && wage[i] < 800){ counter[5]++; }else if (wage[i] >= 800 && wage[i] < 900){ counter[6]++; }else if (wage[i] >= 900 && wage[i] < 1000){ counter[7]++; }else { counter[8]++;
} } // print the result in tabular form for (int i = 0 ;i < header.length; i++) System.out.println(header[i]+" "+counter[i]);