Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to generate a random number in a specific range with C++

1 Answer

0 votes
#include <iostream>
#include <ctime> 

using namespace std;

int main()
{
	srand((unsigned)time(0));

	int n;
	int min = 3, max = 7;

	int range = (max - min) + 1;

	for (int i = 0; i < 30; i++) 
	{
		n = min + int(range * rand() / (RAND_MAX + 1.0));
		cout << n << endl;
	}

	return 0;
}


/*
run:

6
4
3
4
4
5
3
6
7
5
5
6
6
3
5
6
6
5
6
3
3
5
6
6
3
6
5
3
7
6

*/

 



answered Feb 16, 2017 by avibootz
...