Search the Whole World Here.,.,

Convert the following 'while loop' into its equivalent 'for loop' without altering the output of the program.


int x = 100, a = 30;

while (x >= 10)
{
          System.out.print("New Amount =" +(x+a));
           a++;
            x -= a;
}