Programming Assignment V
Programming Assignment V
SALES COMMISSION
Write a main class to create a Book object, set the book price, and
display all the details.
13. Create a class Employee with instance variables: name, eid, and
gross_salary. Implement:
1. Constructor: Initializes name and eid.
2. GrossSalary(int basic): Calculates gross_salary = basic +
HRA + DA (where HRA is 30% of basic and DA is 24% of
HRA).
3. display(): Displays employee details.