/****************************************************************************** Lab Exercise #2 -- Part B ******************************************************************************/ using namespace std; #include int main() { const int AAA = 7, BBB = 20; int A, B, C, D, E, F, G, H; // Give the value displayed by each of the output operations below. A = 5; A += AAA; cout << "Value of A: " << A << endl; // Value of A: ____________ B = 10; B *= BBB + 3; cout << "Value of B: " << B << endl; // Value of B: ____________ D = C = 36; cout << "Value of C: " << C << endl; // Value of C: ____________ cout << "Value of D: " << D << endl; // Value of D: ____________ E = 5; F = ++E; cout << "Value of E: " << E << endl; // Value of E: ____________ cout << "Value of F: " << F << endl; // Value of F: ____________ G = 5; H = G++; cout << "Value of G: " << G << endl; // Value of G: ____________ cout << "Value of H: " << H << endl; // Value of H: ____________ }