// find_max.cpp read find_max.dat into a vector // after the data is read in (print data as reading it) // print the name with the largest value (highest score) // // A simple main program is good enough // You may use a loop or STL to find the maximum value // test run your program using find_max < find_max.dat // // submit cs109 HW10 find_max.cpp or find_max.C or find_max.cc // // As usual, do it in C++ // Smaller is better // Simpler is better // Here is the file find_max.dat (the file does not contain "// ") // // Joe 3 // Jim 5 // Mary 4 // Mike 1 // John 6 // Jane 2