Posted by Erika on Thursday, February 9, 2012 at 8:42pm.
Write a program that reads test scores up to 30 into an array. sentinel will stop when -1 is entered.
Write functions that:
1. read the scores into arrays
2. computes the distribution based on whether they are As, Bs and so on
3. find how many students have the same score
4. display the number of studdents, the distribution, number of students with the same score.
This is what I have so far. I have part 1. Now I need help in total the number of students which is based on the number of grades entered. Then I need help with 3. and 4.
#include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
using namespace std;
void readinfo(int);
int totalstudents (int);
void displayinfo;
int main()
{
const int VALS_LEN = 30;
int totalstudents[VALS_LEN];
cout << "Welcome to the student test manager!" << endl;
readinfo(VALS_LEN);
cout << endl;
cout << "Report " << endl;
cout << "______ " << endl;
cout << endl;
cout << "Number of students: " << totalstudents << endl;
system ("pause");
return 0;
}
void readinfo(int testscores)
{
for( int studentScores = 0; studentScores < testscores; studentScores ++)
{
while(testscores != -1)
{
cout << "Please enter student test scores (or -1 to quit): ";
cin >> testscores;
}
}
}
int totalstudents (int students)
{
int testscores;
int total = 0;
for (int students = 0; students < 30; students ++)
{
total = testscores ++;
return total;
}
}
void displayinfo
No one has answered this question yet.
Answer this Question
Related Questions
C++ Programming - Video Game Player Program Write a program to do the following...
Programming - Here is the question that I need help to write the code for the ...
computer programming c++ - write a program that can read 10 interger values into...
computer programming - write a program that can read 10 interger values into an ...
Programming - I need your help to write a program using visual basic 2010 for ...
Computer Programing & Logic Design - Submit pseudocode and a flowchart for ...
programming - How to write a program to create a class roster using an array? ...
college - Write a C++ program to fill an array with 6 numbers, and then reverse...
C programming - Question: Write a program that reads integers from the keyboard ...
Programming - I suppose to write a program that calculates the average of up to ...
For Further Reading