Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ random between two values

int randNum = rand()%(max-min + 1) + min;
Comment

make random nuber between two number in c++

#include <stdio.h>      /* NULL */
#include <stdlib.h>     /* srand, rand */
#include <time.h>       /* time */

int Main()
{
  int randomNumber;

  /* initialize random seed: */
  srand (time(NULL));

  /* generate random number between 1 and 10: */
  randomNumber = rand() % 10 + 1;
	v1 = rand() % 100;         // v1 in the range 0 to 99
	v2 = rand() % 100 + 1;     // v2 in the range 1 to 100
	v3 = rand() % 30 + 1985;   // v3 in the range 1985-2014 
}
Comment

generate random number between two numbers in cpp

int random = offset + (rand() % range);
Comment

PREVIOUS NEXT
Code Example
Cpp :: ue4 get size of viewport c++ 
Cpp :: fill two dimension array c++ 
Cpp :: grpah class data structure 
Cpp :: what is difference between single inverted and double inverted in programming languages 
Cpp :: commets in codeblocks 
Cpp :: error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ 
Cpp :: c++ get input without loop 
Cpp :: shuffle elements c++ 
Cpp :: how to create a copy constructor for generic array class in c++ 
Cpp :: filling dynamic array with a specific value in c++ 
Cpp :: tostring c++ 
Cpp :: modf() c++ 
Cpp :: qt qimage load from file 
Cpp :: calculate how many liters would be needed 
Cpp :: eosio name to string 
Cpp :: cannot find "-lsqlite3" C++ 
Cpp :: c++ string to double 
Cpp :: c++ find sum of vector 
Cpp :: binary exponentiation modulo m 
Cpp :: how to read a line from the console in c++ 
Cpp :: how to get last element of set in c++ 
Cpp :: fabs() c++ 
Cpp :: c++ string remove first character 
Cpp :: c++ check if string is empty 
Cpp :: elixir update map 
Cpp :: gfgdf 
Cpp :: how to use decrement operator in c++ 
Cpp :: convert all characters in string to uppercase c++ 
Cpp :: number of lines in c++ files 
Cpp :: vector.find() 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =