This assignment requires you to write a C++ program that willcalculate monthly p
ID: 3609636 • Letter: T
Question
This assignment requires you to write a C++ program that willcalculate monthly paychecks for employees at a department store.The algorithm for determining the salary is described in example1-3 on page 18 of the Malik text. A text file contains the inputdata for the employees. The first line in the file contains thename and location of the store. You can input this line as a stringusing getline. Each of the following lines in the file containsinformation for one employee:
first name last name years ofservice base salary monthlysales
Data items for employees are separated by blanks.
Notes: