// Example 2.2. Program to print the number of units in 17 dozen #include using namespace std; int main() { const int DOZEN = 12; // number of units in a dozen int numberOfDozens = 17, // number of dozens units; // number of units units = numberOfDozens * DOZEN; cout << numberOfDozens << " dozen contain " << units << " units.\n"; return 0; }