Consider the following method. What is the result of mystery(5)? (5 points) public static int mystery(int n)
{
if (n >= 3)
{
return mystery(n − 1) + 2;
}
return n + 1;
}
2
3
4
5
9