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 [पृष्ठ ४४]