Description of the assignment: Your program should read in a set of grades (that are all integers) entered by the user. The user will signify the end of the list of grades by entering -999. Do NOT process this value. You can assume that the user will enter at least three grades and not more than 100 grades, all of which will be integers in between 0 and 100, inclusive. For the set of grades, your program should compute the minimum value, print this out to two decimal places and remove it from the data. Then your program should compute the maximum value, print it out to two decimal places and remove it from the data. Then, your program should calculate the mean and standard deviation for the remaining set of grades, and print these out to two decimal places. Finally, a histogram for this data (without the highest and lowest grades) should be printed out as well. Your program should include the following functions: void readGrades (double grades [], int *n); /* This function reads an unknown number of grades (maximum of 100) into the array grades and counts the data items that have been read. You are not supposed to prompt the user to enter the grades. Just use scanf to read in the grades. The end of the input is represented by a negative number -999 */ Preconditions: An empty array which is initialized to 0 must be passed to the function. Postconditions: Array holds the input values and n is the effective size of the array (i.e the number of data items read) */ void frequency (double grades[], int n) /* Given an array of real numbers, this function finds out frequency (number of students) for each interval 0-4, 5- 9,...,95 - 99, 100 prints out the frequency values and plots the histogram */ int maximum (double grades [], int n) ; /* Given an array of real numbers and the effective size of the array (i.e. count of the numbers in the array), this

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Description of the assignment: Your program should read in a set of grades
(that are all integers) entered by the user. The user will signify the end of the list
of grades by entering -999. Do NOT process this value. You can assume that the
user will enter at least three grades and not more than 100 grades, all of which
will be integers in between 0 and 100, inclusive. For the set of grades, your
program should compute the minimum value, print this out to two decimal places
and remove it from the data. Then your program should compute the maximum
value, print it out to two decimal places and remove it from the data. Then, your
program should calculate the mean and standard deviation for the remaining set
of grades, and print these out to two decimal places. Finally, a histogram for this
data (without the highest and lowest grades) should be printed out as well.
Your program should include the following functions:
void readGrades (double grades [], int *n);
/* This function reads an unknown number of grades (maximum
of 100) into the array grades and counts the data items
that have been read. You are not supposed to prompt the
user to enter the grades. Just use scanf to read in the
grades. The end of the input is represented by a negative
number 999 */
Preconditions: An empty array which is initialized to 0
must be passed to the function.
Postconditions: Array
effective size of the
read) */
holds the input values and n is the
array (i.e the number of data items
void frequency (double grades [], int n)
/* Given an array of real numbers, this function finds out
frequency (number of students) for each interval 0-4, 5-
9,...,95 99, 100 prints out the frequency values and
plots the histogram */
int maximum (double grades [], int n) ;
/* Given an array of real numbers and the effective size of
the array (i.e. count of the numbers in the array), this
Transcribed Image Text:Description of the assignment: Your program should read in a set of grades (that are all integers) entered by the user. The user will signify the end of the list of grades by entering -999. Do NOT process this value. You can assume that the user will enter at least three grades and not more than 100 grades, all of which will be integers in between 0 and 100, inclusive. For the set of grades, your program should compute the minimum value, print this out to two decimal places and remove it from the data. Then your program should compute the maximum value, print it out to two decimal places and remove it from the data. Then, your program should calculate the mean and standard deviation for the remaining set of grades, and print these out to two decimal places. Finally, a histogram for this data (without the highest and lowest grades) should be printed out as well. Your program should include the following functions: void readGrades (double grades [], int *n); /* This function reads an unknown number of grades (maximum of 100) into the array grades and counts the data items that have been read. You are not supposed to prompt the user to enter the grades. Just use scanf to read in the grades. The end of the input is represented by a negative number 999 */ Preconditions: An empty array which is initialized to 0 must be passed to the function. Postconditions: Array effective size of the read) */ holds the input values and n is the array (i.e the number of data items void frequency (double grades [], int n) /* Given an array of real numbers, this function finds out frequency (number of students) for each interval 0-4, 5- 9,...,95 99, 100 prints out the frequency values and plots the histogram */ int maximum (double grades [], int n) ; /* Given an array of real numbers and the effective size of the array (i.e. count of the numbers in the array), this
function returns the location of the highest number in the
array */
int minimum (double grades [], int n) ;
/* Given an array of real numbers and the effective size of
the array (i.e. count of the numbers in the array), this
function returns the location of the lowest number in the
array */
void deleteElement (double grades[], int *n, int loc);
/* Given an array of real numbers, the effective size of
the array and the location of the element to be deleted,
this function deletes that element from the array and
decrements the effective size, n, by one */
double mean (double grades [], int n) ;
/* Given an array of numbers and the effective size of the
array this function computes and returns the mean */
double StandardDeviation (double grades [], int n) ;
/* Given an array of numbers and the effective size of the
array, this function computes and returns the standard
deviation as described in the previous section */
Restrictions
Your program should include math.h system library to use sqrt() and pow()
functions.
Your source code should begin with comments containing the following
information:
/* Name:
Program Number:
Title:
Date:
*/
Each function should have a comment statement in the beginning to indicate
what inputs does it take and what output it delivers.
Transcribed Image Text:function returns the location of the highest number in the array */ int minimum (double grades [], int n) ; /* Given an array of real numbers and the effective size of the array (i.e. count of the numbers in the array), this function returns the location of the lowest number in the array */ void deleteElement (double grades[], int *n, int loc); /* Given an array of real numbers, the effective size of the array and the location of the element to be deleted, this function deletes that element from the array and decrements the effective size, n, by one */ double mean (double grades [], int n) ; /* Given an array of numbers and the effective size of the array this function computes and returns the mean */ double StandardDeviation (double grades [], int n) ; /* Given an array of numbers and the effective size of the array, this function computes and returns the standard deviation as described in the previous section */ Restrictions Your program should include math.h system library to use sqrt() and pow() functions. Your source code should begin with comments containing the following information: /* Name: Program Number: Title: Date: */ Each function should have a comment statement in the beginning to indicate what inputs does it take and what output it delivers.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education