Skip to content

Instantly share code, notes, and snippets.

View mkyy's full-sized avatar

Maiky mkyy

View GitHub Profile
@mkyy
mkyy / fatorial.java
Created August 30, 2018 21:22
fatorial whit recursivity function
import java.util.Scanner;
public class fatorial {
static int Fatorial(int N) {
if (N>1) { //enquanto nao for o caso base retorna na funçâo
return N * Fatorial(N-1);
} else // aqui termina a recursividade
return 1;
}