/*
* This program reads a data file consisting of students' GPAs
* followed by their names. The program then prints the highest
* GPA and the names of the students with the highest GPA.
* It uses stack to store the names of the students
* Run:
* make all
* ./main student.txt
************************************************************
* */
#include <cassert>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <string>
#include "./stack.h"
int main(int argc, char* argv[]) {
double GPA;
double highestGPA;
std::string name;
assert(argc == 2);
std::ifstream infile;
stack<std::string> stk;
infile.open(argv[1]);
std::cout << std::fixed << std::showpoint;
std::cout << std::setprecision(2);
infile >> GPA >> name;
highestGPA = GPA;
while (infile) {
if (GPA > highestGPA) {
stk.clear();
stk.push(name);
} else if (GPA == highestGPA) {
}
std::cout << "Highest GPA: " << highestGPA << std::endl;
std::cout << "Students the highest GPA are: " << std::endl;
while (!stk.isEmptyStack()) {
std::cout << stk.top() << std::endl;
stk.pop();
std::cout << std::endl;
return 0;