Question 1: Please design and write C++ code of a user defined function "Randomstatistes Cak". It receives information as values from the main() and return total-sum and average values of the generated random numbers as reference to the main). Keep your code commented and indented for clarity of reading. Cale The main() is given below: Tinclude include include cetime> // defineu the time () Eunction using namespace std/ void RandomStatistics Calc (doubles, doublek, int, int, int) : 7 returna the total aum and mean of random numbero, generated ao per doseription int main () a(/ returne the area and cirounference oaf a circle with radius int min, max, N/ double sumn, avg/ cout << "Enter minimum of the random range: "; cin >> min/ / lowest number cout << "Enter maximum of the random range: " cin >> max:/highest number cout << "Enter the count of random numbers to be generated: " cin >> N: / Total random numbers // oall of Eunction Randomstatistics Calc (sum, avg, min, max, N) : cout << "\n\t The total sum of random numbers - "c

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 17PE
icon
Related questions
Question
Question 1:
Please design and write C++ code of a user defined function "Randomstatistics Cale"". It
receives information as values from the main() and return total-sum and
average values of the generated random numbers as reference to the main().
Keep your code commented and indented for clarity of reading.
The main() is given below:
include <iostream>
+include <cstdlib>
+include cetime> // defines the time () Eunction
using namespace std;
void Randomstatistics_Calc (doublek, doublek, int, int, int):
W returns the total sum and mean OF random numbero, generated as per description;
int main ()
3(/ returne the area and circumference of a circle with radius
int min, max, N
double sumn, avg:
cout << "Enter minimum of the random range: ";
cin >> min; // lowest nunber
cout << "Enter maximum of the random range: "7
cin >> max; / highest number
cout << "Enter the count of random numbers to be generated: ";
cin >> N; // Total random numbers
// call of Eunetion
RandomStatistics Calc(sum, avg, min, max, N) :
cout << "\n\t The total sum of random numbers - "<<sum<<endl;
cout << "\n\t The mean of random numbers = "<<avg<<endl;
return 0;
The template of user defined function header is:
void RandomStatistics Cale(double& total-sum, double& Mean, int Lower Limit, int Upper-Limit, int Count of numbers)
Transcribed Image Text:Question 1: Please design and write C++ code of a user defined function "Randomstatistics Cale"". It receives information as values from the main() and return total-sum and average values of the generated random numbers as reference to the main(). Keep your code commented and indented for clarity of reading. The main() is given below: include <iostream> +include <cstdlib> +include cetime> // defines the time () Eunction using namespace std; void Randomstatistics_Calc (doublek, doublek, int, int, int): W returns the total sum and mean OF random numbero, generated as per description; int main () 3(/ returne the area and circumference of a circle with radius int min, max, N double sumn, avg: cout << "Enter minimum of the random range: "; cin >> min; // lowest nunber cout << "Enter maximum of the random range: "7 cin >> max; / highest number cout << "Enter the count of random numbers to be generated: "; cin >> N; // Total random numbers // call of Eunetion RandomStatistics Calc(sum, avg, min, max, N) : cout << "\n\t The total sum of random numbers - "<<sum<<endl; cout << "\n\t The mean of random numbers = "<<avg<<endl; return 0; The template of user defined function header is: void RandomStatistics Cale(double& total-sum, double& Mean, int Lower Limit, int Upper-Limit, int Count of numbers)
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning