Предмет: Информатика, автор: nurillaevaamina07

Напишите программу, вычисляющую общую стоимость билетов для разновозрастной группы:
Программа должна поочередно запрашивать ввод количества взрослых, детей, пожилых людей. Затем считать и печатать общую сумму к оплате для всей группы.

Приложения:

Ответы

Автор ответа: kingrustemik
1

Ответ:

# Define the ticket prices for each age group

adult_ticket_price = 100

child_ticket_price = 50

senior_ticket_price = 75

# Get the number of tickets for each age group

num_adults = int(input("Enter the number of adult tickets: "))

num_children = int(input("Enter the number of child tickets: "))

num_seniors = int(input("Enter the number of senior tickets: "))

# Calculate the total cost

total_cost = num_adults * adult_ticket_price + num_children * child_ticket_price + num_seniors * senior_ticket_price

# Print the total cost

print("The total cost for the tickets is", total_cost, "dollars.")


kingrustemik: у меня все робит
kingrustemik: у тебя работает?
nurillaevaamina07: Да
Похожие вопросы
Предмет: Геометрия, автор: zlatakirichenko
Предмет: Английский язык, автор: tarieltojgonbaev32