Advertisements
Advertisements
प्रश्न
Find the error:
int j, k;
for (k = 1; k <= 10; k--)
{
for (j = 1; j >= k; j++)
System.out.printIn(j);
}
एका वाक्यात उत्तर
उत्तर
In the outer loop, the update expression should be k++ and in the inner loop, the condition should be j <= k.
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?