Advertisements
Advertisements
प्रश्न
Predict the output and also mention the number of times the loop runs.
int a = 0;
while (a > −5)
{
System.out.print(a + " ");
System.out.print((--a * 2));
System.out.println();
--a;
}
संक्षेप में उत्तर
उत्तर
The output: 0 -2
-2 -6
-4 -10
Number of times the loop runs: 3
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?