#include<iostream>
#include<string>
usingnamespace std;
//struct with all the info
struct Student
{
string Name; //student's name
int IDnum; //student's ID number
int Tests; //students Test score
double Average; // the average score
double Grade; //the final grades
};
//end of the struct
//function prototype begins
void getData(Student *);
void calcLtr(Student *);
void printReport(Student *);
//end of prototype
//begin int main
int main()
{
Student freshman;
//get the student data
cout<<"\nEnter the student Data";
getData(&freshman); //pass the address of freshman
cout<<"\nHere is the student Data you entered";
//calculate students grade
cout<<
}
void getData(Student *)
{
//get the student name
cout<<"\nStudent name: ";
cin>>Student.Name;
}