#include main() { float a = 1.1, b = 1.2, c = 1.3, d = 1.4, e = 0, x = 2, y; x += y = 4.7 + (a == b && c < d ? 3.2 : 1.4) - 7 * - ! e++; // e = 1, x = 15.1, y = 13.1 cout << "e=" << e << ", x=" << x << ", y=" << y << endl; return 0; }