I don't know but pretty sure thats not the case. Just now checked that base is everywhere bigger than 0 in the fixed tests and in the random tests too.
For you to check the random tests:
int randint(int min, int max) {
return rand() % (max + 1 - min) + min;
};
That is the function i create random integers with.
Its used like this to create base b:
int b = randint(1, 16);
or for bigger numbers
int b = randint(1, 5000);
So b should'nt be 0. Please correct if you find a mistake.
Word homie
Can you advise which language doesn't uses the
0
to100
inclusive range?Sorry yeah i made that mistake. Fixed now. Thanks!
I don't know but pretty sure thats not the case. Just now checked that base is everywhere bigger than 0 in the fixed tests and in the random tests too.
For you to check the random tests:
That is the function i create random integers with.
Its used like this to create base b:
or for bigger numbers
So b should'nt be 0. Please correct if you find a mistake.
Sorry i am new so i have no idea what you are talking about XD
My bad tho