(Solved Homework): You will be creating a program to help a teacher calculate final grades for a class. The program will calculate a final letter gr…

You will be creating a program to help a teacher calculate final grades for a class. The program will calculate a final letter grade base on a standard 90/80/70/60 scale. Your program should: – Ask the user how many students, and how many assignments there are – Get student names from the user – Get grades from the user – Calculate final grades – Print the report Requirements: – Must use multidimensional arrays – 2D array to hold student names – 2D array to hold all grades – Array to hold final letter grades Functions (You must fill in the parameters): void getGrades(); void printGrades(); void getStudents(); void printStudents(); void calcGrades(); void printFinalGrades();

Just needs first name should look something like this:

Don't use plagiarized sources. Get Your Custom Essay on
(Solved Homework): You will be creating a program to help a teacher calculate final grades for a class. The program will calculate a final letter gr…
Get an essay WRITTEN FOR YOU, Plagiarism free, and by an EXPERT!
Order Essay

Bob Thomas
100 97
78 92
62 70
B B

Expert Answer

 

#include <iostream>
using namespace std;

// function declarations
void getStudents(string names[], int noOfStuds);
void getGrades(int** grade, int noOfStuds, int noOfTests);
void calcGrades(char gradeletter[], int** grade, int noOfStuds, int noOfTests);
void printStudents(string names[], int noOfStuds);
void printGrades(int** grade, int noOfStuds, int noOfTests);
void printFinalGrades(char gradeletter[], int noOfStuds);

int main()
{

// declaring variables
int noOfStuds, noOfTests;

// getting the inputs entered by the user
cout << “How many students :”;
cin >> noOfStuds;

cout << “How many assignments :”;
cin >> noOfTests;

// creating two dimensional array which stores grades
int** grade;
grade = new int*[noOfStuds];
for (int i = 0; i < noOfStuds; i++)
grade[i] = new int[noOfTests];

// creating array which stores student names
string names[noOfStuds];

// creating array which stores student grade letters
char gradeletter[noOfStuds];

// calling the functions
getStudents(names, noOfStuds);

getGrades(grade, noOfStuds, noOfTests);
calcGrades(gradeletter, grade, noOfStuds, noOfTests);
printStudents(names, noOfStuds);
printGrades(grade, noOfStuds, noOfTests);
printFinalGrades(gradeletter, noOfStuds);
return 0;
}

// This function will get the student names entered by the user
void getStudents(string names[], int noOfStuds)
{

for (int i = 0; i < noOfStuds; i++)
{
cout << “Enter name of student#” << i + 1 << “:”;
cin >> names[i];
}
}

// This function will get the student grades entered by the user
void getGrades(int** grade, int noOfStuds, int noOfTests)
{
for (int i = 0; i < noOfStuds; i++)
{
cout << “Student #” << i + 1 << “:” << endl;

for (int j = 0; j < noOfTests; j++)
{
cout << “Enter score of student” << j + 1 << “:”;
cin >> grade[i][j];
}
}
}

// This function will calculate the grade letter
void calcGrades(char gradeletter[], int** grade, int noOfStuds, int noOfTests)
{
double tot = 0.0, avg = 0.0;

for (int i = 0; i < noOfStuds; i++)
{
for (int j = 0; j < noOfTests; j++)
{
tot += grade[i][j];
}
avg = tot / noOfTests;
if (avg >= 90)
{
gradeletter[i] = ‘A’;
}
else if (avg >= 80 && avg < 90)
{
gradeletter[i] = ‘B’;
}
else if (avg >= 70 && avg < 80)
{
gradeletter[i] = ‘C’;
}
else if (avg >= 60 && avg < 70)
{
gradeletter[i] = ‘D’;
}
else if (avg >= 0 && avg < 60)
{
gradeletter[i] = ‘F’;
}
tot = 0.0;
}
}

// This function will display student names
void printStudents(string names[], int noOfStuds)
{
for (int i = 0; i < noOfStuds; i++)
{
cout << names[i] << “t”;
}
cout << endl;
}

// This function will display student grades
void printGrades(int** grade, int noOfStuds, int noOfTests)
{
for (int i = 0; i < noOfTests; i++)
{
for (int j = 0; j < noOfStuds; j++)
{
cout << grade[j][i] << “t”;
}
cout << endl;
}
}

// This function will display student grade letters
void printFinalGrades(char gradeletter[], int noOfStuds)
{
for (int i = 0; i < noOfStuds; i++)
{
cout << gradeletter[i] << “t”;
}
cout << endl;
}

____________________

Output:

Homework Ocean
Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.

× Contact Live Agents