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)

so,

read s,t,r
m = s/12 + t * r
print m

Thanks

Algorithm:

1. Start
2. Read the annual salary (AS), total sales (TS), and commission rate (CR)
3. Calculate the monthly sales (MS) = TS/12
4. Calculate the commission amount (CA) = MS * CR
5. Calculate the monthly pay (MP) = AS/12 + CA
6. Display the monthly pay (MP)
7. Stop

Pseudocode:

1. Start
2. Read AS, TS, CR
3. MS = TS/12
4. CA = MS * CR
5. MP = AS/12 + CA
6. Display MP
7. Stop

Sure! Here's an algorithm and corresponding pseudocode for the salesperson's program:

Algorithm:
1. Read the annual salary, total sales, and commission rate as input.
2. Calculate the monthly pay using the formula: (annual salary/12) + (total sales * commission rate)
3. Output the calculated monthly pay.

Pseudocode:
1. Read annual_salary, total_sales, and commission_rate as input.
2. Set monthly_pay = (annual_salary / 12) + (total_sales * commission_rate).
3. Output monthly_pay.

Here's an example of how the pseudocode can be implemented in Python:

```python
# Input
annual_salary = float(input("Enter the annual salary: "))
total_sales = float(input("Enter the total sales: "))
commission_rate = float(input("Enter the commission rate as a decimal: "))

# Calculate monthly pay
monthly_pay = (annual_salary / 12) + (total_sales * commission_rate)

# Output
print("The monthly pay is:", monthly_pay)
```

Hope this helps! Let me know if you have any further questions.