//Read in name and year born from a file #include #include #include using namespace std; int main(void) { double num, total=0; string name; int yearborn, age,count=0; ifstream people("c:/mycpp/names.txt"); //input file stream if(people) { //file was opened cout<<"NAME\tAGE\n"; //heading people>>name; //read first before loop! while (!people.eof()) { //eof=end of file people>>yearborn; age=2016-yearborn; cout<>name; //read next name count++; }//each person people.close(); cout<