Asked by Mare

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)

Answers

Answered by Steve
so,
read s,t,r
m = s/12 + t * r
print m
Answered by Sanjukta
Thanks
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions