so,
read s,t,r
m = s/12 + t * r
print m
Write an algorithm and pseudocode for
A salesperson wants to write a program to calculate their gross monthly pay based on their annual salary, total sales, and commission rate. The program's output is the monthly pay calculated by: Monthly pay = (annual salary/12) + (monthly sales * commission rate as decimal)
2 answers
Thanks