Write the pseudocode for a program to calculate the wages of a
salesman according to the following rules.
The wage is calculated at a rate of 15% of sales. If the salesman has been with the company more than three years, he receives a loyalty bonus of 10% of his calculated wage.
HINTS: What output is required? What processing is needed? What input data is required?
2 answers
Can someone help me with this
wage = 0.15 * sales
if (tenure >3) wage *= 1.10
maybe you can handle the i/o parts
if (tenure >3) wage *= 1.10
maybe you can handle the i/o parts