Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Explore our Q&A platform to find reliable answers from a wide range of experts in different fields. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

Use pseudocode. 1) Prompt for and input a saleswoman's sales for the month (in dollars) and her commission rate (percentage). Output her commission for that month. Note that you will need the following Variables: SalesAmount CommissionRate CommissionEarned
You will need the following formula: CommissionEarned= Sales Amount * (commissionrate/100)


Sagot :

Answer:

The pseudocode is as follows:

Input SalesAmount

Input CommissionRate

CommissionEarned= SalesAmount * (CommissionRate/100)

Print CommissionEarned

Explanation:

This gets input for SalesAmount

Input SalesAmount

This gets input for CommissionRate

Input CommissionRate

This calculates the CommissionEarned

CommissionEarned= SalesAmount * (CommissionRate/100)

This prints the calculated CommissionEarned

Print CommissionEarned