# Запитуємо користувача ввести стару ціну першого товару
old_price_1 = float(input("Введіть стару ціну першого товару: "))
# Запитуємо користувача ввести стару ціну другого товару
old_price_2 = float(input("Введіть стару ціну другого товару: "))
# Запитуємо користувача ввести відсоток зростання цін
p = float(input("Введіть відсоток зростання цін: "))
# Обчислюємо нові ціни
new_price_1 = old_price_1 * (1 + p / 100)
new_price_2 = old_price_2 * (1 + p / 100)
# Виводимо старі та нові ціни на екран
print("Стара ціна першого товару:", old_price_1)
print("Нова ціна першого товару:", new_price_1)
print("Стара ціна другого товару:", old_price_2)
print("Нова ціна другого товару:", new_price_2)
# Get the original prices and percentage increase from the user
price1 = float(input("Enter the original price of good 1: "))
price2 = float(input("Enter the original price of good 2: "))
p = float(input("Enter the percentage increase: "))
# Calculate the new prices
new_price1 = price1 * (1 + p/100)
new_price2 = price2 * (1 + p/100)
# Display the old and new prices
print("Old price of good 1: $", price1)
print("New price of good 1: $", new_price1)
print("Old price of good 2: $", price2)
print("New price of good 2: $", new_price2)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
# Запитуємо користувача ввести стару ціну першого товару
old_price_1 = float(input("Введіть стару ціну першого товару: "))
# Запитуємо користувача ввести стару ціну другого товару
old_price_2 = float(input("Введіть стару ціну другого товару: "))
# Запитуємо користувача ввести відсоток зростання цін
p = float(input("Введіть відсоток зростання цін: "))
# Обчислюємо нові ціни
new_price_1 = old_price_1 * (1 + p / 100)
new_price_2 = old_price_2 * (1 + p / 100)
# Виводимо старі та нові ціни на екран
print("Стара ціна першого товару:", old_price_1)
print("Нова ціна першого товару:", new_price_1)
print("Стара ціна другого товару:", old_price_2)
print("Нова ціна другого товару:", new_price_2)
# Get the original prices and percentage increase from the user
price1 = float(input("Enter the original price of good 1: "))
price2 = float(input("Enter the original price of good 2: "))
p = float(input("Enter the percentage increase: "))
# Calculate the new prices
new_price1 = price1 * (1 + p/100)
new_price2 = price2 * (1 + p/100)
# Display the old and new prices
print("Old price of good 1: $", price1)
print("New price of good 1: $", new_price1)
print("Old price of good 2: $", price2)
print("New price of good 2: $", new_price2)