Convert the following iterative method to one that uses recursion: Public static void sign(int n) { While

Question:

Convert the following iterative method to one that uses recursion:

Public static void sign(int n)
{
 While (n > 0)
 {
 System.out.println("No Parking");
 N--;
 }
}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: