Created
June 24, 2015 15:54
-
-
Save joymon/f9c51e9af30ce9d1a554 to your computer and use it in GitHub Desktop.
Simple function to write factorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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