+ 4
#you can just copy paste this code and for future doubts u can ask chatgpt n = int(input()) print(round((40 + 5*n)*1.1))
8th Oct 2024, 5:45 AM
In Ur Debt Too 😌
In Ur Debt Too 😌 - avatar
+ 2
Himawari the task has a specific rounding requirement: "Output format A number that represents the cost of your purchase rounded up to the nearest whole number." To round up you can import math and use the math.ceil() function.
7th Oct 2024, 10:37 PM
Brian
Brian - avatar
+ 2
Himawari type/code less its python not c
8th Oct 2024, 12:16 PM
In Ur Debt Too 😌
In Ur Debt Too 😌 - avatar
+ 1
canvas = 40 while True: try: color = int(input()) break except ValueError: continue color_price = color * 5 total = canvas + color_price tax = total * 0.10 to_pay = total + tax print(int(to_pay))
9th Oct 2024, 11:38 AM
Aramayis Hayrapetyan
0
hg
9th Oct 2024, 7:42 PM
yas yas
yas yas - avatar