Java Programming Question [Problem Description] Create an Employee class with name, age, sarary and bonus. Define a constructor to initialize these attributes of the class. Define method to output the employee's name, age, and total income (the sum of salary and bonus). [Input form] Please input the employee's name: Please input the employee's age: Please input the employee's salary: Please input the employee's bonus: [Output form] Employee's name: Employee's age: Employee's income: [Input Sample ①] Please input the employee's name: Tom Please input the employee's age: 20 Please input the employee's salary: 3000.0 Please input the employee's bonus: 4000.0 [Output Sample ①] Employee's name: Tom Employee's age: 20 Employee's income: 7000.0 [Sample explanation] The format of the input and output must exactly match the specified format, otherwise no score
Java Programming Question
[Problem Description]
Create an Employee class with name, age, sarary and bonus. Define a constructor to initialize these attributes of the class.
Define method to output the employee's name, age, and total income (the sum of salary and bonus).
[Input form]
Please input the employee's name:
Please input the employee's age:
Please input the employee's salary:
Please input the employee's bonus:
[Output form]
Employee's name:
Employee's age:
Employee's income:
[Input Sample ①]
Please input the employee's name: Tom
Please input the employee's age: 20
Please input the employee's salary: 3000.0
Please input the employee's bonus: 4000.0
[Output Sample ①]
Employee's name: Tom
Employee's age: 20
Employee's income: 7000.0
[Sample explanation]
The format of the input and output must exactly match the specified format, otherwise no score.
Step by step
Solved in 2 steps with 1 images