Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

rand c++

#include <iostream>
#include <time.h>

using namespace std;

int main()
{
   srand(time(0));             
   cout<<rand()%100<<endl;            //choose random numbers from 0 to 99
   
   //create random integer value in range a to a+b  (a+rand()b;)
   cout <<1+ rand() % 9 <<endl;   //random numbers between 1 and 10
   cout << 25+rand() % 25 <<endl;   //random numbers between 25 and 50

}
Source by www.bitdegree.org #
 
PREVIOUS NEXT
Tagged: #rand
ADD COMMENT
Topic
Name
1+1 =