Consider the following function f: def mys(m): if m == 1: return(1) else: return(m+mys(m-1)) Which of the following is correct? a. The function always terminates with mys(n) = factorial of n
The function always terminates with mys(n) = 1+2+...+n
The function terminates for positive n with mys(n) = factorial of n
The function terminates for positive n with mys(n) = 1+2+...+n
Answers
Answered by
0
Answer:
The answer is
the function always terminates with mys(n) = 1 + 2 + 3 + ... + n
Similar questions