Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
In the space to the right, draw a flowchart which contains the steps outlined in the pseudocode below. Make sure that your decision structure takes...
In the space to the right, draw a flowchart which contains the steps outlined
in the pseudocode below.
Make sure that your decision structure takes on the shape shown in figure 3-3
on page 91.
Make each input and output item a separate symbol.
---------------------------------------------------------------------------------------------------------------
Pseudocode:
Start
Declarations:
num monthlySalesAmount
num commissionEarned
input monthlySalesAmount
if monthlySalesAmount is greater than 10000
commissionEarned = monthlySalesAmount * 0.15
else
commissionEarned = monthlySalesAmount * 0.10
endif
output "Your sales amount is: ", monthlySalesAmount
output "You commission is: ", commissionEarned
Stop
THIS HAS TO BE CREATED TO WHERE I CAN PUT THE FLOWCHART INTO THE DIA PROGRAM.