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;}
- 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;
}
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images