Question: Arrays can not be used Don't use C++ programming techniques and don't use advance topics from Chapters 6,7 , and 8 . Don't use arrays.

Arrays can not be used
Don't use C++ programming techniques and don't use advance topics from Chapters 6,7 , and 8 . Don't use arrays. Do use the printf and scanf functions. Don't use other input and output unctions. Don't hard code your input into your program code. DON'T copy a program that omeone else has written. a. Write a program that will find the smallest, largest, and average values in a collection of N numbers. Get the value of N before scanning each value in the collection of N numbers. Use 20 numbers, including positive and negative integers (non-zero). Your list of numbers shall not be sorted before each value is scanned. b. Modify your program to compute and display the range of values in the data collection and the standard deviation of the data collection. To compute the range, subtract the smallest number from the largest number in the data collection. To compute the standard deviation, accumulate the sum of the squares of the data values (sum_squares) in the main loop. After loop exit, use the formula
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
