Suppose x, y, and z are int variables and w and t are double variables. What value is assigned to each of these variables after the last statement executes? (4, 6)
x = 8;
y = x + 3;
z = x * y + 2 * x;
x = z – y % 4;
w = 2.5 * z – x;
t = w / 2 + 13 / 4 – y % 5;