Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. (20%) Create a program that calculates the minimum, maximum, median, and mean of an array of numbers. Sort the array and print the unsorted
1. (20%) Create a program that calculates the minimum, maximum, median, and mean of an array of numbers. Sort the array and print the unsorted and sorted version at the end. (a) The program should read 8 values to compute the statistics on. (b) You must calculate the minimum, maximum, median, and mean using your own code (NO LIBRARIES). (c) You can use float.h for floating point limits. (d) Use proper indentation and formatting in your code. (e) Each statistic must be implemented as a separate function. (f) The functions must take an array as a formal parameter and return a floating point. (8) Output the values as comma separated values in the following order: i. min ii. max iii. median iv. mean (h) Below the statistics, print the unsorted array on one line and the sorted version on the last line. (i) Your code should be properly formatted to reflect the scope of each statement. 6) Save your code as stats_sort.c
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started