A Computer Salesman gets commission on the following basis using Java

/*A computer salesman gets commission on the following basis:
            Sales                        Commission Rate
            Rs. 0 - 20,000                      3%
            Rs. 20,000 - 50,000                12%
            Rs. 50,001 and more                31%
After accepting the sales as input, calculate and print his commission amount and rate
of commission.*/
Source code:

import java.util.*;
class Comm
{
    public static void main(String args[])
    {
        double comm=0.0;
        int rate=0,sale;
        Scanner sc=new Scanner(System.in);
        System.out.println("Enter the sales rs:");
        sale=sc.nextInt();
        if(sale<=20000)
        {
            rate=3;
            comm=sale*0.3;
        }
        if(sale>=20000 && sale<=50000)
        {
            rate=12;
            comm=sale*0.12;
        }
        if(sale>=50000)
        {
            rate=31;
            comm=sale*0.31;
        }
        System.out.println("Commission amount="+comm);
        System.out.println("Commission rate: "+rate+"%");
    }
}
Output:
Enter the sales rs:
25000
Commission amount=3000.0
Commission rate: 12%

       
           

Comments

  1. It was awesome 😎 it helped me a lot

    ReplyDelete
  2. Hey I am troubleing from my computer project and please give me a suggestion of this project A company give commission based on sale. Input the sale of
    a person. Write a Java program to find the commission
    earned by a person. (Enter sale in the range 1-100)

    ReplyDelete

Post a Comment

Popular posts from this blog

A school has following rules for grading system: a. Below 25 - F b. 25 to 45 - E c. 45 to 50 - D d. 50 to 60 - C e. 60 to 80 - B f. Above 80 - A Ask user to enter marks and print the corresponding grade.

Write Java program to allow the user to input his/her age. Then the program will show if the person is eligible to vote. A person who is eligible to vote must be older than or equal to 18 years old.