How can we insert two independent random number to two equations (x,y) contain two parts like this:
x = a* randomnumber1 + b* randomnumber2
y = c* randomnumber1 + d* randomnumber2
these two random number should be independent.
Is there a reason you haven't tried created two variables called randomnumber1 and randomnumber2, respectively, and assigning a random value to each with rand() or whatever you like?