How can i get this source code using do while loop?

  1. Using repetition control structure (do while loop), prepare a program that can receive employee id and working hour(s) for three (3) employees.
    The program able to:
    i. calculate Overtime Payment using formula Overtime = Working hours * 35.00 for each employee
    ii. calculate Total Overtime Payment for all employees
    iii. calculate Average Of Overtime Payment for each employee
    The suggestion output is shown as below.
    Enter Employee ID :psp01 Enter working hour :10 Working hour is: 10 Overtime Payment is: RM350
    Enter Employee ID psp02 Enter working hour :8 Working hour is: 8 Overtime Payment is: RM280
    Enter Employee ID :psp03
    Enter working hour 12 Working hour is: 12
    Overtime Payment is: RM420
    Total Overtime Payment: RM1050 Average Overtime Payment: RM350