//Program tracks 10 students
//Prompts for first and last names
//Collect 4 grades from each student: final exam, 2 quizzes, and class project
//Report will display names w/ individual scores, class average, and highest grade
//Each students individual grade will be calculated with grade weights
/*Grade Weights
-2 Quizzes @ 15% each
-1 Final Exam @ 20%
-1 Class Project @ 50%
*/
#include<iostream>
using namespace std;
int main()
{
struct goodStudent
{
string fname;
string lname;
double exam;
double …
Run Code Online (Sandbox Code Playgroud)