Random number

Jun 18, 2013 at 4:28pm
Im looking for a way to get a random number, I tried the code below but it doesnt give me a random number each time i cout it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;

int main(){
int r;
while(true){
	srand(time(0));
	r = rand() % 10 + 1;
	cout << r <<endl;
	}
return 0;
}
Jun 18, 2013 at 4:46pm
Your program will make a new random number each time the time changes.

Jun 18, 2013 at 5:05pm
isnt there a faster way so I dont have to wait for the time to change ?
Jun 18, 2013 at 5:07pm
don't put srand in the loop.
Jun 18, 2013 at 5:27pm
ohh thank you
Topic archived. No new replies allowed.