Create a class called Employee that includes three instance variables—a first name (type String), a last name (type Stri

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

Create a class called Employee that includes three instance variables—a first name (type String), a last name (type Stri

Post by answerhappygod »

Create a class called Employee that includes three instance variables—a first name (type String), a last name (type String) and a monthly salary (double). Provide a constructor that initializes the three instance variables. Provide a set and a get method for each instance variable. If the monthly salary is not positive, do not set its value. Write a test app named EmployeeTest that demonstrates class Employee’s capabilities. Create two Employee objects and display each object’s yearly salary. Then give each Employee a 10% raise and display each Employee’s yearly salary again
OUTput should look like this
Create A Class Called Employee That Includes Three Instance Variables A First Name Type String A Last Name Type Stri 1
Create A Class Called Employee That Includes Three Instance Variables A First Name Type String A Last Name Type Stri 1 (86.1 KiB) Viewed 30 times
Original invoice information Part number: 1234 Description: Hammer Quantity: 2 Price: 14.95 Invoice amount: 29.90 Updated invoice information Part number: 001234 Description: Yellow Hammer Quantity: 3 Price: 19.49 Invoice amount: 58.47 Original invoice information Part number: 5678 Description: PaintBrush Quantity: 0 Price: 0.00 Invoice amount: 0.00 Updated invoice information Part number: 5678 Description: PaintBrush Quantity: 3 Price: 9.49 Invoice amount: 28.47
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply