Electrical and Computer Engineering
24 of 52
UAH
CPE 112
Bad Style
Example Continued
•const float PRICE = 150000.0; // Selling price less land
•int main(){ float grossFootage; // Total square footage
•    float livingFootage;        // Living area
•float costPerFoot;  // Cost/foot of living area
•    cout << fixed << showpoint;  // Set up floating pt.
• //   output format
•
•grossFootage = LENGTH * WIDTH * STORIES;livingFootage =
•grossFootage - NON_LIVING_SPACE; costPerFoot = PRICE /
•livingFootage; cout << "Cost per square foot is “
•<< setw(6) << setprecision(2) << costPerFoot << endl;
•return 0;
•}
•