Economics / Money

Define a class Employee to accept emp_id, emp _name, basic_salary from the user and display the gross_salary.

By Rabins Sharma Lamichhane

June 11, 2017

Write a program to define a class Employee to accept emp_id, emp _name, basic_salary from the user and display the gross_salary.

import java.lang.*; import java.io.*; class Employee { int emp_id; String emp_name; float basic_salary; Employee(int id, String name, float sal) { emp_id=id; emp_name=name; basic_salary=sal; } void display() { float da=basic_salary*15/100; float hra=basic_salary*10/100; float gross_sal=basic_salary+da+hra; System.out.println ("Employee Id= "+emp_id); System.out.println ("Emplyee Name= "+emp_name); System.out.println ("Gross Salary= "+gross_sal); } } class q4Employee { public static void main(String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println ("Enter Employee id"); int id = Integer.parseInt(br.readLine()); System.out.println ("Enter Employee Name"); String name = br.readLine(); System.out.println ("Enter Basic Salary"); Float sal = Float.parseFloat(br.readLine()); Employee e = new Employee(id, name, sal); e.display(); } }

 

Share this: