-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrutas.py
25 lines (25 loc) · 943 Bytes
/
frutas.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
menu = int(input("Selecione a fruta que deseja comprar: 1 - maçã , 2 - banana, 3 - laranja . "))
preco_maca = 2.30
preco_laranja = 3.60
preco_banana = 1.85
if menu == 1:
qtd = int(input("Quantas unidades você deseja: "))
valor_total = qtd * preco_maca
if qtd > 1:
print(f"{qtd} maçãs estão saindo por R${valor_total} .")
else:
print(f"{qtd} maçã está saindo por R${valor_total} .")
if menu == 2:
qtd = int(input("Quantas unidades você deseja: "))
valor_total = qtd * preco_banana
if qtd > 1:
print(f"{qtd} bananas estão saindo por R${valor_total} .")
else:
print(f"{qtd} banana está saindo por R${valor_total} .")
if menu == 3:
qtd = int(input("Quantas unidades você deseja: "))
valor_total = qtd * preco_laranja
if qtd > 1:
print(f"{qtd} laranjas estão saindo por R${valor_total} .")
else:
print(f"{qtd} laranja está saindo por R${valor_total} .")