At Westonci.ca, we connect you with the best answers from a community of experienced and knowledgeable individuals. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

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

Thank you for your visit. We're committed to providing you with the best information available. Return anytime for more. We appreciate your visit. Our platform is always here to offer accurate and reliable answers. Return anytime. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.