Can you write a java application that calculates the value of the following expressions
a+=b/c%d++ and bx<<=8
The range of values for a=5, b=5, c=3, and d=2
bx values are -1,0,1,2,3,7,16
a+=b/c%d++ and bx<<=8
The range of values for a=5, b=5, c=3, and d=2
bx values are -1,0,1,2,3,7,16
Comment