Advertisements
Advertisements
Question
Find the errors in the following program snippet:
for (int k = 1; k <= 10; k--)
System.out.println(k);
One Line Answer
Solution
In the loop, the update expression should be k++.
shaalaa.com
Is there an error in this question or solution?