Exercise 2

Operator Example Means Answer
+= x+=y x=x+y 24
-= x-=y x=x-y 16
*= x*=y x=x*y 80
/= x/=y x=x/y 5
%= x%=y x=x%y 0