// express.cpp provides a 'laboratory' for exploring C++ expressions. // // Written by: Ricky J. Sethi <-- Change this and the following two lines! // Written for: Comp 217, Lab 3 // Last Revised: 2005-07-21 //********************************************************************* #include using namespace std; int main() { //************************************************** // Make changes here: //************************************************** int i = 11, j = 22; double x = 11.11, y = 22.22; cout << '\n' << i << '+' << j << " = " << i + j << endl << x << '+' << y << " = " << x + y << endl; //************************************************** return 0; }