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
3
Answer:
i Instead of I++ there will be i--
Similar questions
Political Science,
13 hours ago
Math,
13 hours ago
Math,
1 day ago
Chemistry,
1 day ago
Math,
8 months ago