Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

Generating random numbers in c++

#include <iostream>
using namespace std;
int main()
{
   int sz;
   cout<<"Enter the size of array::";
   cin>>sz;
   int randArray[sz];
   for(int i=0;i<sz;i++)
      randArray[i]=rand()%100;  //Generate number between 0 to 99
  
   cout<<"
Elements of the array::"<<endl;
  
   for(int i=0;i<sz;i++)
      cout<<"Elements no "<<i+1<<"::"<<randArray[i]<<endl;
   return 0;
}
Source by www.codespeedy.com #
 
PREVIOUS NEXT
Tagged: #Generating #random #numbers
ADD COMMENT
Topic
Name
6+2 =