#include #include using namespace std; const int WEEKS_PER_YEAR{52}; const int POVERTY_LEVEL{12880}; int main() { float hoursWorked{0}; float hourlyWage{0}; float annualIncome{0}; cout << "Enter you hourly wage => "; cin >> hourlyWage; cout << endl; cout << "Enter the hours you worked each week => "; cin >> hoursWorked; cout << endl; annualIncome = hoursWorked * hourlyWage * WEEKS_PER_YEAR; cout << fixed << setprecision(2) << showpoint; cout << "Your annual income of $" << annualIncome << " is "; if (POVERTY_LEVEL > annualIncome) { cout << "below"; } else { cout << "above"; } cout << " the poverty level." << endl; return 0; }