Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Solve this code as specified in the problem (please stick to it), use basic C++ commands, functions, etc. Post a screenshot of the C++ source
Solve this code as specified in the problem (please stick to it), use basic C++ commands, functions, etc. Post a screenshot of the C++ source file with comments. Thank you.
Write a complete C++ program named random.cpp" that generates 10 random numbers in the range flowerbound, upperbound). The program first prompts the user to enter the lower and upper bounds. Then it prints out the 10 random numbers, and how many random numbers are above the mid point of the range, and how many random numbers are below the mid point. You are required to use two functions in this program: The first function "GetRange" is responsible for prompting the user to enter the lower and upper bounds of a range. It sends the bounds back to the calling function using parameter passing by reference; The second function "DisplayResults is responsible for generatingand displaying the 10 random values within the range. It counts and displays the number of random numbers above the mid point, and the number of random numbers below the mid point. The lower and upper bounds are passed into the function using parameter passing by value. Your program should include all the needed directives and comments. NOTE: Submit your program using the following command: handin test1 random.cpp A sample run would be as follows (user input is in boldface to differentiate between output and input for the example): Please define a range in terms of the lower and upper bound values: 20 40 The 10 random values in the range (20,40) are: 24 34 21 35 6 numbers are above the mid point of 30. 4 numbers are below the mid point of 30Step 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