Lab 12.12
Lab 12.12
#include <fstream>
#include <vector>
using namespace std;
int main() {
ifstream inFS; // Input file stream
vector<string> firstNames(20);
vector<string> lastNames(20);
vector<int> midterm1Scores(20);
vector<int> midterm2Scores(20);
vector<int> finalScores(20);
// Output the data and letter grade (you need to calculate the grade)
/* write your code here */
return 0;
}