Відповідь:
print("Введіть ціну на цукерки:")
price_candy = float(input())
print("Введіть кількість куплених цукерок:")
quantity_candy = int(input())
print("Введіть ціну на печиво:")
price_cookies = float(input())
print("Введіть кількість купленого печива:")
quantity_cookies = int(input())
total_candy = price_candy * quantity_candy
total_cookies = price_cookies * quantity_cookies
total_purchase = total_candy + total_cookies
print("Повна вартість покупки: {:.2f}".format(total_purchase))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
print("Введіть ціну на цукерки:")
price_candy = float(input())
print("Введіть кількість куплених цукерок:")
quantity_candy = int(input())
print("Введіть ціну на печиво:")
price_cookies = float(input())
print("Введіть кількість купленого печива:")
quantity_cookies = int(input())
total_candy = price_candy * quantity_candy
total_cookies = price_cookies * quantity_cookies
total_purchase = total_candy + total_cookies
print("Повна вартість покупки: {:.2f}".format(total_purchase))