In main() for now: do these - one at a time, each in it's own loop (we will make functions out of them later –Declare an array RandArray with 20 integers –Assign each of the 20 values with a random value from 0 to 99 Hint: Use rand()%100 For mimir: Do not call srand at the top of main. // normally: Call srand(time(0)) at the top of main –(you need #include<cstdlib>) –Write another loop that prints the array, with index values Important: If the output values do not match mimir, please add srand(17); // inside your main function - at the top code format: #include <iostream>using namespace std; #include <cstdlib> // required for rand() int main(){   srand(17);   // define a constant ARRAYSIZE that is 20    // declare randArray    // set the 20 elements in randArray to be a random number between 0 and 99   // hint: use rand()%100   // print the 20 values return 0;}

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 29SA
icon
Related questions
Question
  • In main() for now: do these - one at a time, each in it's own loop (we will make functions out of them later

–Declare an array RandArray with 20 integers

–Assign each of the 20 values with a random value from 0 to 99

  • Hint: Use rand()%100
  • For mimir: Do not call srand at the top of main.

// normally: Call srand(time(0)) at the top of main

–(you need #include<cstdlib>)

–Write another loop that prints the array, with index values

Important:

If the output values do not match mimir, please add

srand(17); // inside your main function - at the top

code format:

#include <iostream>
using namespace std;

#include <cstdlib> // required for rand()

int main()
{
   srand(17);
   // define a constant ARRAYSIZE that is 20

   // declare randArray

   // set the 20 elements in randArray to be a random number between 0 and 99
   // hint: use rand()%100
   // print the 20 values

return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
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