Factorial
int Factorial( int n ) { if( n <= 1 ) return 1; return n * Factorial(n-1); }
May 15, 2017
C++, General, Programming
C++, Easy, Factorial
Your email address will not be published.
Author *
Email *
Website
© 2019 Ryan Wallace — Powered by WordPress
Theme by Anders Noren — Up ↑
Leave a Reply