Question Write an application that conducts the following in a looped manner: - Provides a menu that is looped for user selection checking for out of bounds entry - Allow the user to enter a number of integer-based entries (between 1 to 20). To store the data you may consider declaring an array, int courseArray[20]. Once the data has been stored, you can print it to Write an application that conducts the following in a looped manner: - Provides a menu that is looped for user selection checking for out of bounds entry - Allow the user to enter a number of integer-based entries (between 1 to 20). To store the data you may consider declaring an array, int courseArray[20]. Once the data has been stored, you can print it to the screen. Any re-selection will over-write the existing data in memory. - Sort the data (ascending order) and print it to the screen. Use a function name mySortfunction. The argument and return type you need to decide by yourself. - Calculate the max, min, range, mean, and median of the provided data. Use a function name \( \mathrm{mmRmmFunction} \). The argument and return type you need to decide by yourself. - Limit statistical calculations to 1 decimal point in the displayed output - Please use only positive integers for the data entry. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 5 Sorry your input was not understood. Please try again. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 2 Thanks! Good Bye!

KMGBMT The Asker · Computer Science

Please write a code in C.

Transcribed Image Text: Write an application that conducts the following in a looped manner: - Provides a menu that is looped for user selection checking for out of bounds entry - Allow the user to enter a number of integer-based entries (between 1 to 20). To store the data you may consider declaring an array, int courseArray[20]. Once the data has been stored, you can print it to the screen. Any re-selection will over-write the existing data in memory. - Sort the data (ascending order) and print it to the screen. Use a function name mySortfunction. The argument and return type you need to decide by yourself. - Calculate the max, min, range, mean, and median of the provided data. Use a function name \( \mathrm{mmRmmFunction} \). The argument and return type you need to decide by yourself. - Limit statistical calculations to 1 decimal point in the displayed output - Please use only positive integers for the data entry. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 5 Sorry your input was not understood. Please try again. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 2 Thanks! Good Bye!
More
Transcribed Image Text: Write an application that conducts the following in a looped manner: - Provides a menu that is looped for user selection checking for out of bounds entry - Allow the user to enter a number of integer-based entries (between 1 to 20). To store the data you may consider declaring an array, int courseArray[20]. Once the data has been stored, you can print it to the screen. Any re-selection will over-write the existing data in memory. - Sort the data (ascending order) and print it to the screen. Use a function name mySortfunction. The argument and return type you need to decide by yourself. - Calculate the max, min, range, mean, and median of the provided data. Use a function name \( \mathrm{mmRmmFunction} \). The argument and return type you need to decide by yourself. - Limit statistical calculations to 1 decimal point in the displayed output - Please use only positive integers for the data entry. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 5 Sorry your input was not understood. Please try again. Available Operations: 1. Store Data and Compute Statistics 2. Exit Enter your selection: 2 Thanks! Good Bye!
Community Answer
RIEDOH

【General guidance】The answer provided below has been developed in a clear step by step manner.Step1/2Bubble sort:Bubble sort is a sorting algorithm that compares two adjacent elements and swaps them until they are in the intended order.Max:Maximum element in the arrayMIn;:Minimum element in the arrayRange:Max-MinMean:Average of the arrayMedian :Midlle element of the arrayExplanation:Please refer to solution in this step.Step2/2#include #includevoid bubblesort(int array[], int size) { ... See the full answer