Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

How do I store 30 random numbers in an array?

0 votes
asked Mar 15, 2018 by anonymous
Thirty random numbers between -20 and 20 are entered into an array named nums. Write a program to print the array elements and find out how many of them are positive, how many are negative, how many are even and how many odd.

1 Answer

0 votes
answered Mar 18, 2018 by Bhautik Pethani (170 points)
#include<iostream>

#include<cstdlib>

using namespace std;

int main()

{

    int a[30];

srand(time(0));

for(int i=0; i<30; i++)

{

    a[i]=(rand()%6+1);

    cout<<"a["<<i<<"] : "<<a[i]<<endl;

}

return 0;

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...