Skip to content

Instantly share code, notes, and snippets.

@wilyJ80
Created November 19, 2024 13:14
Show Gist options
  • Save wilyJ80/bcd1c206c5a43bdebbad2ea1d3f44078 to your computer and use it in GitHub Desktop.
Save wilyJ80/bcd1c206c5a43bdebbad2ea1d3f44078 to your computer and use it in GitHub Desktop.
exemplo.proc
// Calcular fatorial iterativo
pr init
int fat = 1, n = 1, z
getint n
if (n <= 1)
fat = 1
else
fat = n
z = n
while (z > 2)
z = z - 1
fat = fat * z
endw
endi
putint fat
endp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment