Created
November 9, 2021 17:57
-
-
Save jeffersonchaves/84f5182d14d6108df3672292f0e80efd to your computer and use it in GitHub Desktop.
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
programa | |
{ | |
funcao inicio() | |
{ | |
inteiro tamanho_tabua = 5 | |
inteiro tamanho_tabua_cm = tamanho_tabua * 100 | |
inteiro tamanho_pedaco_cm = 45 | |
inteiro numero_pedacos = 0 | |
inteiro desperdicio = 0 | |
numero_pedacos = tamanho_tabua_cm / tamanho_pedaco_cm | |
desperdicio = tamanho_tabua_cm % tamanho_pedaco_cm | |
escreva("Serão obtidos com uma madeira de ",tamanho_tabua ," metros ", numero_pedacos, " pedaços de madeira.\n\n") | |
escreva("Sobrarão ", desperdicio ," cm de madeira") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment