Convert the following for loop to a while loop: for (int x = 50; x > 0;

Question:

Convert the following for loop to a while loop: 

for (int x = 50; x > 0; x--)
{
 System.out.println(x + " seconds to go.");
}

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

Step by Step Answer:

Question Posted: