CJCoding With Joseph

Employee Raise Class

Create a class Employee with a public field Salary set by the constructor and a GiveRaise(double amount) method that increases Salary by amount. The tester prints the salary afterward. Do not write a Main method.

Starting at 50000 and giving a raise of 5000, the program prints:
55000

Expected Output:

55000
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.