Advertisements
Advertisements
Question
Find the error:
int j, k;
for (k = 1; k <= 10; k--)
{
for (j = 1; j >= k; j++)
System.out.printIn(j);
}
One Line Answer
Solution
In the outer loop, the update expression should be k++ and in the inner loop, the condition should be j <= k.
shaalaa.com
Is there an error in this question or solution?