-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Day #37
base: main
Are you sure you want to change the base?
Day #37
Conversation
litros_necessarios = (area_a_ser_pintada * FOLGA) / COBERTURA_POR_LITRO | ||
latas_necessarias = math.ceil(litros_necessarios / CAPACIDADE_LATA) | ||
galoes_necessarios = math.ceil(litros_necessarios / CAPACIDADE_GALAO) | ||
latas_necessarias, galoes_necessarios |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentação incorreta
@@ -0,0 +1,68 @@ | |||
16. Faça um programa para uma loja de tintas. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seu arquivo não está salvo com a extensão .py, então o git entende como se fosse um arquivo de texto comum. No próximo, salva como py que vai te ajudar e você pode rodar pra testar!
PRECO_LATA = 80.0 | ||
|
||
def calcular_compra_tinta(area_a_ser_pintada): | ||
54 = area_a_ser_pintada / 3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variaveis não podem ter nomes só com números
if calcular_compra_tinta(area_a_ser_pintada): | ||
litros_necessarios = (area_a_ser_pintada * FOLGA) / COBERTURA_POR_LITRO | ||
latas_necessarias = math.ceil(litros_necessarios / CAPACIDADE_LATA) | ||
galoes_necessarios = math.ceil(litros_necessarios / CAPACIDADE_GALAO) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aqui você está calculando o número de galões sem descontar o que já foi contado nas latas
No description provided.