Computer Science, asked by evelyn393, 2 months ago

a+=a++-++a+a++ + ++a when a=3 in java

Answers

Answered by srishtirormaratha104
0

Answer:

int x = 3, y = 7, z = 4; x += x++ * x++ * x++; // gives x = 63 System.out.println(x); y = y * y++; System.out.println(y); // gives y = 49 z = z++ + z; System.out.println(z); // gives z = 9

Similar questions