Untitled
unknown
plain_text
2 years ago
277 B
6
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