Define a class Employee to accept emp_id, emp _name, basic_salary from the user and display the gross_salary.
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;...

Recent Comments