Answer:
The program in Python is as follows:
name = input("Name of item: ")
PoundPrice = int(input("Pound Price: "))
Pounds = int(input("Weight (pounds): "))
Ounces = int(input("Weight (ounce): "))
UnitPrice = PoundPrice/16
TotalPrice = PoundPrice * (Pounds + Ounces/16)
print("Unit Price:",UnitPrice)
print("Total Price:",TotalPrice)
Step-by-step explanation:
This gets the name of the item
name = input("Name of item: ")
This gets the pound price
PoundPrice = int(input("Pound Price: "))
This gets the weight in pounds
Pounds = int(input("Weight (pounds): "))
This gets the weight in ounces
Ounces = int(input("Weight (ounce): "))
This calculates the unit price
UnitPrice = PoundPrice/16
This calculates the total price
TotalPrice = PoundPrice * (Pounds + Ounces/16)
This prints the unit price
print("Unit Price:",UnitPrice)
This prints the total price
print("Total Price:",TotalPrice)