Skip to content

Instantly share code, notes, and snippets.

@joymon
Created June 24, 2015 15:54
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 joymon/f9c51e9af30ce9d1a554 to your computer and use it in GitHub Desktop.
Save joymon/f9c51e9af30ce9d1a554 to your computer and use it in GitHub Desktop.
Simple function to write factorial
private void WriteFactorial(int no)
{
int result = FindFactorialWithSimulatedDelay(no);
Console.WriteLine("Factorial of {0} is {1}", no, result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment