☑Kizspy.me
(Choose 1 answer)
☐ A
Consider the following function:
void fun(int n)
{if(n<=0)
return;
else if (n<7)
Back
Next
FUQ.sh
sh the exam.
}
{System.out.print("
+ n);
fun(n-2);
else
fun(n-2);
What is the output when the statement fun(9); is run?
A. 135
B. 5 3 1
C. 7 5 3 1
D. 7 5 3