Hello!
My problem here is: I have an table with about 100 numbers, going from 1 to 100, and from these numbers, I only want to get the Odd ones, like 1,3,5,7,9,11,13,15...
The problem is, it will randomly select an number from that sequence with the code: round(random(1,100)), and I want it to convert any Even numbers to Odd numbers, or to only generate Odd numbers from 1,100.
And no, I don't wanna switch to Even, I must stay in Odd to have good code performance and to avoid bugs.
Any help for the solution of this problem will be appreciated!