Last active
October 21, 2021 22:00
-
-
Save loonix/56cf46af5e7b6b18cdff95fc44ca7007 to your computer and use it in GitHub Desktop.
[Portugol] Verificar se numero e par ou impar #portugol
This file contains 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
// Ler um numero e escrever se o numero e par ou impar | |
inicio | |
variavel inteiro numero | |
variavel real quociente | |
variavel inteiro resto | |
variavel inteiro resto2 | |
escrever "Introduza numero: " | |
ler numero | |
quociente <- numero / 2 | |
resto <- numero % 2//resto da divisao por dois | |
// outra forma de criar resto | |
resto2 <- numero - ( quociente * 2 ) | |
se ( resto = 0 ) entao | |
escrever "Par" | |
senao | |
escrever "Impar" | |
fimse | |
fim | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
obrigado, me ajudou muito.