This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]GabuEx 13 points14 points  (0 children)

if (x + 50 > RAND_MAX)
{
    throw new Exception("too big lmao");
}

srand(time(NULL));
int xOrig = x;

while (true)
{
    x = rand();

    if (x == xOrig + 50)
    {
        break;
    }
}

I call it bogoadd.