Created
November 19, 2024 13:14
-
-
Save wilyJ80/bcd1c206c5a43bdebbad2ea1d3f44078 to your computer and use it in GitHub Desktop.
exemplo.proc
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
// 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