 |
 |
 |
 |
 |
 |
 |
 |
 |
//*****************************************************
|
|
//
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;
|
|