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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
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.
c
Please
log in
or register to answer this question.
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;
}
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...