Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
MarGraz committed Jan 27, 2019
1 parent 209a8b2 commit 2553595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MetodoRicorsivo-CalcoloFattoriale/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static int Fattoriale(int n)
else
{ //fattoriale è il risultato di numero moltiplicato per tutti i numeri interi positivi minori o uguali a tale numero
//esempio: fattoriale di 5 = 5 * 4 * 3 * 2 * 1
//Fattoriale è qui un metodo recursivo, ossia che richiama se stesso
//Fattoriale è qui un metodo ricorsivo, ossia che richiama se stesso
int risultato = n * Fattoriale(n - 1);
return risultato;
}
Expand Down

0 comments on commit 2553595

Please sign in to comment.