Asked by Williams

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?

Answers

Answered by Williams
Can someone help me with this
Answered by oobleck
wage = 0.15 * sales
if (tenure >3) wage *= 1.10

maybe you can handle the i/o parts
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions