air_Salary

air_Salary

Cameroonian International Airport decided to have a salary plan for its employees. In the new Policy, bonus is based on the fact that one is a senior staff or junior staff. You have been called in as a programmer to develop a software to meet this policy?s requirement: (a.) Create a class called Salary.
(b.) Create methods/functions that will calculate i. the tax which is 5% of the gross salary ii. Bonus depending on the status of employee-senior/junior senior staff-1hr-50ghana cedis junior staff-1hr-20ghana cedis iii. Net Salary-Bonus+gross salary-tax
(c.)Create another class called SalDemo with the main function (d.)Declare an instance of the salary class called cal. (e.)Use the cal object to check the net salary (f.)Use JOptionPane to allow a user to enter the status,time and the gross salary. (g.)The Net salary should pop up.

View Answers

December 3, 2010 at 4:05 PM

Hi Friend,

Try the following code:

import javax.swing.*;
class Salary 
{
    public int calculateTax(int gs){
        double ded=gs*0.05;
        System.out.println(ded);
        int taxx=(int)ded;
        return taxx;
    }
    public int calculateBonus(String status,int hrs){
        int bonus=0;
        if(status.equals("Senior")){
            if(hrs>8){
                int hr=hrs-8;
                bonus=hr*50;
                return bonus;
            }
        }
        else if(status.equals("junior")){
                 if(hrs>8){
                int hr=hrs-8;
                bonus=hr*20;
                return bonus; 
                 }
        }
        return bonus;
    }
    public int calculateNetSalary(int gs,int hrs,String status){
        int tax=calculateTax(gs);
        int bonus=calculateBonus(status,hrs);
        int sal=bonus+gs;
        int netSalary=sal-tax;
        return netSalary;
    }
}
public class SalDemo{
    public static void main(String[]args){
Salary cal=new Salary();
String status=JOptionPane.showInputDialog(null,"Enter status Senior/Junior");
String st=JOptionPane.showInputDialog(null,"Enter number of hours");
int time=Integer.parseInt(st);
String salary=JOptionPane.showInputDialog(null,"Enter Gross Salary");
int grossSalary=Integer.parseInt(salary);
int net=cal.calculateNetSalary(grossSalary,time,status);
JOptionPane.showMessageDialog(null,"Net Salary is: "+Integer.toString(net));
    }
}

In the above code, we have create a condition if the time exceed 8 hours then there will be bonus otherwise not.As you have not specified the number of regular hours.

Thanks









Related Tutorials/Questions & Answers:
air_Salary
air_Salary  Cameroonian International Airport decided to have a salary plan for its employees. In the new Policy, bonus is based on the fact that one... called Salary. (b.) Create methods/functions that will calculate i. the tax

Ads