Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I make my do while loop create a new number from my pseudo random number every time the loop comes around again? If so, how?'

EDIT: Sorry, it's in C++

EDIT2: I just want a new number between 0 and 3 (0,1,2,3) every time the do...while loop goes around for an integer

share|improve this question
You haven't told us what language you are attempting this in. – D.N. Jul 16 '11 at 22:12
a little more detail please. Do you want to generate a new random number based on a previously generated random number or do you want to generate numbers using some standard random number generator – Osama Javed Jul 16 '11 at 22:14
What does your code look like currently? Is there a problem with just "putting the function call inside the loop"? – Chris Lutz Jul 16 '11 at 22:21
I already have the random pseudo integer in the do...while loop, but it just keeps selecting the same number over and over again. – Bob Jul 16 '11 at 22:23
Bob, why don't you show us the code? Try to use rand()%4 and you should be fine. – tomasz Jul 16 '11 at 22:31

2 Answers

While you might like the following example:

do
{
  new_number = out_of(my_pseudo_random_number);
}
while(true);

You may find it more useful:

int main()
{
    srand(time(NULL));   // Initialize once at program startup.

    do
    {
         int number = rand();  // generate new random number,
    }
    while(true);
}

(But I'm absolutely not sure what your're asking for)

share|improve this answer
1  
epic pseudo code...good one – Osama Javed Jul 16 '11 at 22:24

This will specifically make random numbers from 0 t0 3. You don't necessarily need the iostream/cout statements except for the output I do.

rand() % 4; creates a random number from 0 to (not including) 4.

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int main()
{
    int num;

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

    //make some numbers
  do{
        num = rand() % 4;
        cout << num;
  } while(true);

  return 0;
}
share|improve this answer
Don't use rand(), and especially never, ever use rand() % N. The result will be about as random as xkcd.com/221 . – David Hammen Jul 17 '11 at 1:38
@David what other solution do u poropose – Osama Javed Jul 17 '11 at 1:52
Just to name two, Boost and the GNU scientific library have excellent random number generators, extremely good for all but cryptographic purposes. There are plenty of others out there. In comparison, rand() ranges from extremely poor to just so-so. – David Hammen Jul 17 '11 at 2:31
@David While I would normally agree with you, I doubt that a more robust random number generator is really necessary in this case... – rintaun Jul 22 '11 at 1:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.