Computer Science, asked by yashja2006, 7 months ago

Find the value of w the following mathematical expression in Java programming language:

[a=2, b=4, c=6]
w=a++ + --b + c++%10;​

Answers

Answered by Imblank
0

Answer:

w = (2)+(3)+(6)%10

w = 2+3+4

w = 9

Similar questions