At Westonci.ca, we make it easy for you to get the answers you need from a community of knowledgeable individuals. Join our platform to connect with experts ready to provide precise answers to your questions in various areas. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

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