Please help me create this program. It must be C++ language. Instructions are in
ID: 3662355 • Letter: P
Question
Please help me create this program. It must be C++ language. Instructions are in the image below.
Write a program that reads students' names followed by their test scores. The program should output each student's name followed by the test scores and the relevant grade. It should also find and print the highest test score and the name of the students having the highest test score. Student data should be stored in a struct variable of type studentType, which has four components: studentFName and studentLName of type string testscore of type int (testscore is between 0 and 100), and grade of type char. Suppose that the class has 20 students. Use an array of 20 components of type studentType Your program must contain at least the following functions: A function to read the students' data into the array. A function to assign the relevant grade to each student. A function to find the highest test score. A function to print the names of the students having the highest test score. Your program must output each student's name in this form: last name followed by a comma, followed by a space, followed by the first name: the name must be left justified. Moreover, other than declaring the variables and opening the input and output files, the function main should only be a collection of function calls.Explanation / Answer
#include<stdio.h>
#define SIZE 20
void ReadData();
void AssignGrade();
void HighScore();
void Print();
void TopStudent();
struct studentType
{
char studentFName[15];
char studentLName[15];
int testScore;
char grade;
} st[SIZE],top;
void main()
{
clrscr();
ReadData();
AssignGrade();
HighScore();
TopStudent();
Print();
}
void ReadData()
{
int i;
for (i = 0; i <SIZE; i++)
{
printf(" Enter First Name , Last Name & Test Score for student[%d] : ", i);
scanf("%s", &st[i].studentFName);
scanf("%s", &st[i].studentLName);
scanf("%d", &st[i].testScore);
}
}
void AssignGrade()
{
int i;
for(i=0;i<SIZE;i++)
{
if(st[i].testScore>=70)
st[i].grade='A';
else if(st[i].testScore>=60 && st[i].testScore<70)
st[i].grade='B';
else if(st[i].testScore>=50 && st[i].testScore<60)
st[i].grade='C';
else if(st[i].testScore>=40 && st[i].testScore<50)
st[i].grade='D';
else
st[i].grade='F';
}
}
void HighScore()
{
int i,max=0;
for (i = 0; i < SIZE; i++)
{
if (max < st[i].testScore)
{
max=st[i].testScore;
top=st[i];
}
}
}
void TopStudent()
{
printf(" %s got Highest Score",top.studentFName);
}
void Print()
{
int i;
for(i=0;i<SIZE;i++)
{
printf(" %s, %s got %d score & %c grade",st[i].studentLName,st[i].studentFName,st[i].testScore,st[i].grade);
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.