Open
Conversation
belisarenata
commented
Aug 19, 2023
| 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 |
Collaborator
Author
There was a problem hiding this comment.
Indentação incorreta
belisarenata
commented
Aug 19, 2023
| @@ -0,0 +1,68 @@ | |||
| 16. Faça um programa para uma loja de tintas. | |||
Collaborator
Author
There was a problem hiding this comment.
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!
belisarenata
commented
Aug 19, 2023
| PRECO_LATA = 80.0 | ||
|
|
||
| def calcular_compra_tinta(area_a_ser_pintada): | ||
| 54 = area_a_ser_pintada / 3 |
Collaborator
Author
There was a problem hiding this comment.
Variaveis não podem ter nomes só com números
belisarenata
commented
Aug 19, 2023
| 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) |
Collaborator
Author
There was a problem hiding this comment.
Aqui você está calculando o número de galões sem descontar o que já foi contado nas latas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.