Electrical and Computer Engineering
17 of 23
UAH
CPE 112
•//*****************************************************
•// Incomes program
•// This program reads a file of income amounts
•// classified by gender and computes the average
•// income for each gender
•//*****************************************************
•
•#include <iostream>
•#include <iomanip>    // For setprecision()
•#include <fstream>    // For file I/O
•#include <string>     // For string type
•
•using namespace std;
•