Computer Science, asked by brainblizzard86, 19 hours ago




int k = 4, j = 9;
k+=k++ - ++j +k:
System.out.println("k=" +k);
System.out.println("j = " +j);

Answers

Answered by Abeeha55550
1

Answer:

The output is k=k+k++_++j +k

k=5+5_10+6

k=16_10

k=6

So output is

6 ...

may it is useful for u

Similar questions