hello guyz im afraid if i understood this assignment unproperly:
could you give me the output of it plz? (how should the output of this assign be)
The monthly results for the best 3 employees of the month in a company are sent to the IT department for analysis and calculation in the following format:
1378 2496 3587
Those results are read as follows:
Example:
1378: 1 for the candidate number.
3 grade over 10 for Self-motivation.
7 grade over 10 for Professionalism.
8 grade over 10 for Teamwork.
The coefficients for the 3 attributes above are respectively:
Self-motivation: 5
Professionalism: 2
Teamwork: 3
Result for Employee 1 is: (3x5) + (7x2) + (8x3) = 53
Where the maximum result will be 90: (9x5) + (9x2) + (9x3)
Write a program to do the following:
1. Read and store the results for the 3 employees from the keyboard.
- Calculate and print the result for each of the 3 employees.
THx!!