Posts by WESLEY Mendes • 1 point
1 post
-
-3
votes5
answers8188
viewsA: Best factor calculation algorithm
public int metodo(int valor){ if(valor==1) return 1; else return (valor * metodo(valor -1)); //desmontando o numero } // UTLIZANDO…
1 post
-3
votes5
answers8188
viewspublic int metodo(int valor){ if(valor==1) return 1; else return (valor * metodo(valor -1)); //desmontando o numero } // UTLIZANDO…