Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
. Develop an algorithm pseudo-code or flowchart that will accept the names of each sales staff members and their total sales fo...Asked by hekmat
                . Develop an algorithm pseudo-code or flowchart that will accept the names of each sales staff members and their total sales for the month. The algorithm must calculate the commission at 5 % of their total sales amount. It should
            
            
        Answers
                    Answered by
            oobleck
            
    do {
prompt for name, sales
accept name, sales
if name == "" then exit do
commission = sales * 0.05
print name, sales, commission
}
or, if you don't print the data till the end, you will have to store the info in an array.
    
prompt for name, sales
accept name, sales
if name == "" then exit do
commission = sales * 0.05
print name, sales, commission
}
or, if you don't print the data till the end, you will have to store the info in an array.
                                                    There are no AI answers yet. The ability to request AI answers is coming soon!
                                            
                Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.