Operator Problems
Problem 1:
int x=1;
int y=1;
x = y += 3 / 4 + 5 * 2 % 3 - 6;Problem 2:
int x=1;
float y=1;
x = y = (6 * 2.0 - 2 % 3 * 6) / 3;Problem 3:
Part A
Part B
Problem 4:
Last updated