amount = float(input("Please enter the amount e.g. 456.32 for R456.32: R")) r200 =amount // 200 remaining = amount % 200

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

amount = float(input("Please enter the amount e.g. 456.32 for R456.32: R")) r200 =amount // 200 remaining = amount % 200

Post by answerhappygod »

Amount Float Input Please Enter The Amount E G 456 32 For R456 32 R R200 Amount 200 Remaining Amount 200 1
Amount Float Input Please Enter The Amount E G 456 32 For R456 32 R R200 Amount 200 Remaining Amount 200 1 (193.85 KiB) Viewed 68 times
amount = float(input("Please enter the amount e.g. 456.32 for R456.32: R")) r200 =amount // 200 remaining = amount % 200 amount = remaining r100 = amount // 100 remaining = amount % 100 amount = remaining r50 = amount // 50 remaining = amount % 50 print("Here's the breakdown:") print("R200: " + str(r200)) print("R100:" + str(r100)) print("R50:" + str(r50)) print("Here's what's remaining: R" + str(remaining)) It should become very clear to you (hopefully) that the program cannot compute the number of R20, R10, R5, R2 and/or R1 notes/coins that are required to make the entire payment. You are thus required to modify the program to do this. Your answer should include the above code i.e. it should be the full program and not just your portion. [10 marks].
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply