(Choose 1 answer)
void fun(int n)
Consider the following function:
{if(n<=0)
return;
else if (n<7)
{System.out.print(" " + n);
fun(n-2);
} else
fun(n-2);
}
What is the output when the statement fun(9); is run?
A. 1 3 5
B. 53 1
C. 7 5 3 1
D. 75 3
El 30