I know how to randomize numbers. How can you make it so random numbers can not equal each other? Also, how do you make it so none of the numbers are a specific number? If you don't understand, this is what I mean:
Code:
NumberA = random(10);
NumberB = random(10);
NumberC = random(10);
NumberD = random(10);
NumberE = random(10);
NumberF = random(10);
NumberG = random(10);
NumberH = random(10);
NumberI = random(10);
How can you make it so each number is different and none of them are 0?