Advertisement
_LoneWanderer_

Par ou impar

Apr 4th, 2024
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | Source Code | 0 0
  1. algoritmo "Par ou impar"
  2. var
  3.  numero: inteiro
  4. inicio
  5.       leia(numero)
  6.       se numero%2=0 entao
  7.          escreval ("PAR")
  8.       senao
  9.          escreval ("impar")
  10.          fimse
  11. fimalgoritmo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement