Untitled

 avatar
unknown
plain_text
a year ago
277 B
5
Indexable
//1.     int calFactorial (int n){
//2.         int result = 1;
//3.         int i = 1;
    
//4.         while (i <= n){
//5.             result = result * i;
//6.             i ++;
//7.         } // end while
    
//8.         return result;
//9.     } // the end
Editor is loading...
Leave a Comment