Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created December 11, 2023 00:35
Show Gist options
  • Save renatogroffe/cfe323201933a19f2bb56ede4191d145 to your computer and use it in GitHub Desktop.
Save renatogroffe/cfe323201933a19f2bb56ede4191d145 to your computer and use it in GitHub Desktop.
namespace ConsoleAppRefReadOnly;
public class Fatorial
{
public static int Calcular(in int numero)
{
int resultado = 1;
for (int i = numero; i > 1; i--)
resultado *= i;
return resultado;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment