12345678910111213141516
#include <iostream> #include <cstring> using namespace std; int main() { int x = 3; int y = 2; int z = 1; x -= 5 - y; y *= 2 + x - z; z = y++; cout << x << " " << y << " " <<z; return 0; }
x -= 5 - y;
x -= (5 - y); // 5 - y = 3, therefore x -= 3 is equal to 0
(x -= 5) - y; // which would be (3-5) - 2 = -4
x = x - (5 - y);
x = x - (3);
x = 0;