The code below should calculate an employee's wages when they are paid $14 an hour and receive 4% commission on any sales they make. However, the code doesn't work properly. All of the statements are...


The code below should calculate an employee's wages when they are paid $14 an hour and receive 4% commission on any sales they make. However, the code<br>doesn't work properly. All of the statements are syntactically correct but they are in the wrong order. Number the statements from #1 - #5 so that they are in the<br>correct order. Do NOT change any of the statements.<br>amount=value+hours*14<br>sales=float(input('Enter the sales amount generated: '))<br>value=sales*.04<br>hours=int (input('Enter the number of hours worked: '))<br>print ('The earnings are:', amount)<br>

Extracted text: The code below should calculate an employee's wages when they are paid $14 an hour and receive 4% commission on any sales they make. However, the code doesn't work properly. All of the statements are syntactically correct but they are in the wrong order. Number the statements from #1 - #5 so that they are in the correct order. Do NOT change any of the statements. amount=value+hours*14 sales=float(input('Enter the sales amount generated: ')) value=sales*.04 hours=int (input('Enter the number of hours worked: ')) print ('The earnings are:', amount)

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here