Computer Science, asked by Toshisingh, 8 months ago

b) int y = 56;
int z = ++y + y-- - ++y + y++ + y--
System.out.println(z);
System.out.println(y++);​

Answers

Answered by jeevanjot1234
1

Answer:

172

57

Explanation:

z=57+57-57+57+58

=57+57+58

=172

Similar questions