Hi, so I just started to learn Java and need some help on this practice assignment that I got and I have no clue what's going on lol
The question is:
Three employees in a company are up for a special pay increase. Create an input file called Lab3_input.txt, with the following data:
Miller Andrew 65789.87 5
Green Shelia 75892.56 6
Sethi Amit 74900.50 6.1
Wills George 56784.67 10
Array Steve 87034.50 2.5
Each input line consists of an employee's last name, first name, current salary, and percent pay increase. For example, in the first input line, the last name of the employee is Miller, the first name is Andrew, the current salary is 65789.87, and the pay increase is 5%. Write a program that reads data from the specified file and stores the output in the file Lab3_output.txt. For each employee, the data must be output in the following form: firstname lastname updatedsalary
Formart the output of decimal numbers to two decimal places.
--------------
Any help is appreciated. Thanks!