Consider the following static method.
private static void recur (int n)
{
if (n != 0)
{
recur in
2);
System.out.print(n + " ");
}
}
What numbers will be printed as a result of the call recur (7) ?