Skip to content

Instantly share code, notes, and snippets.

@emanoelbarreiros
Created December 2, 2025 11:07
Show Gist options
  • Select an option

  • Save emanoelbarreiros/21d5e3917718b510573e4b0d8ad13b5f to your computer and use it in GitHub Desktop.

Select an option

Save emanoelbarreiros/21d5e3917718b510573e4b0d8ad13b5f to your computer and use it in GitHub Desktop.
Fatorial iterativo
public class FatorialIterativo {
public static int fatorialIterativo(int n) {
int resultado = 1;
for (int i = 1; i <= n; i++) {
resultado *= i;
}
return resultado;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment