Advertisements
Advertisements
प्रश्न
Some of the code given below contains errors. Identify the error and correct it. Write the output of the correct/corrected code.
int MW[ ] = {21, 56, 31, 459, 52, 742, 26};
boolean some = false;
for(int j = 0; j <MW.length; j++)
{
if (MW[j]/100 > 0)
{
System.out.print("Some Value is :" + MW[j]);
some = true;
break;
}
}
System.out.print(" SOME = " + some);
अति संक्षिप्त उत्तर
Advertisements
उत्तर
No Error. Output: Some Value is : 459 SOME = true
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 7: Arrays - One Dimension - Exercises [पृष्ठ १७५]
