Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 2, 2019 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9cf631f903eb81e2f60992a81851942d to your computer and use it in GitHub Desktop.
Save parzibyte/9cf631f903eb81e2f60992a81851942d to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
for(long i = 0; i < 20; i++){
System.out.println(String.format("Calculando factorial de %d. Iterativo: %d | Recursivo: %d", i, factorial(i), factorialRecursivo(i)));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment