+ 1
Paint costs
I need case 3 and 4 equipment_cost = 40.00 paint_cost = 5.00 tax = 1.1 paint_amount = int(input()) total_paint_cost = paint_amount * paint_cost cost = equipment_cost + total_paint_cost total_tax = cost * tax total = int(total_tax) print(total)
1 Answer
0
The task instruction says:
"rounded ***up*** to the nearest whole number."
Round ***UP***, not down.