Computer Science, asked by rakshit8732, 1 day ago

Identify all the errors in the following repetitive statements.

i. for (int i = 5; i > 0; i++)
{
System.out.println("Java");
}

ii. while (z < 1 && z > 100)
{
a= b;
}

iii. while (x == y) ;
{
xx = yy;
x = y;
}

Answers

Answered by aditya76743
3

Answer:

i Instead of I++ there will be i--

Similar questions