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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?