Advertisements
Advertisements
प्रश्न
What will be the output of the following code?
int k = 5, j = 9;
k += k++ - ++j + k;
System.out.println("k=" + k);
System.out.println("j="+ j);
संक्षेप में उत्तर
उत्तर
k = 6
j = 10
Working:
k = k + (k++ - ++j + k)
= 5 + ( 5 - 10 + 6)
= 5 + (1)
= 6
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.04: Operators in Java - EXERCISES [पृष्ठ ४४]