//program illustrates precedence of operators and implicit type conversion //author Carol Conway 8/27/2020 #include #include //to see the decimal values clearly using namespace std; int main() { int a = 2, b = 3, c = 5; float x = 2.0, y = 3.0, z = 5.0; cout << setprecision(2) << fixed; a = b = c; //Question 1 cout << "1. a = " << a << " b = " << b << " c = " << c <