Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PLEASE HELP C++ some of the content in random.txt Program #2 This problem is a modification of Problem 24 on page 302 of the Gaddis

PLEASE HELP C++

image text in transcribed

image text in transcribed

some of the content in random.txt

image text in transcribed

Program #2 This problem is a modification of Problem 24 on page 302 of the Gaddis text with two small additions. (A scan of this problem can be found on the last page of the assignment.) In this assignment, your program will read in a list of random numbers from an input file, random. txt (found on eLearning in the "Homework Input Files" folder), and calculate the following statistics on those numbers A. B. C. D. E. F. The number of numbers in the file The sum of the numbers in the file The average of the numbers in the file The largest number in the file The smallest number in the file The second largest number in the file CS1336-Programming Fundamentals Page: 4 G. The second smallest number in the file Your program should then print out a report, similar to the following (note that these are demonstration numbers only; they are not accurate for the homework data file) Number of numbers Sum of numbers: Average of numbers: Largest number: Smallest number: Second largest number: Second smallest number: 235 5346 22.8 515 512 ogramming Notes: 1. Note that the number of numbers, the sum of the numbers, the largest and smallest numbers are integers, whereas the average should be a floating point data type printed to one decimal place 2. All of the numbers in the file are between 0 and 1000. Therefore, the minimum value can be found by using the following technique a. Create an int variable minValue and initialize it to some number larger than any number in the file, say 2000 Then include the following statement inside your file processing loop b. if (nextValue

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions