how many times does the while loop get excetuted?
f(m,n) {
ans = 1;
while (m >= 0) {
ans = ans * (ans + 1);
m = m-n;
}
return(ans)
}
Answers
Answered by
0
Answer:
I think so it will be executed three times
Answered by
0
Answer:
2 times is the answer
make me as brainlist
Similar questions