I am trying to write a Random function that returns a random number, which is different than the 5 last different numbers it returned.
A very simular code that I use in excel VBA:
Function Rand(ByVal Low As Long, ByVal High As Long) As Long
Randomize
Num3 = Num2
Num2 = Num1
Rand = Int((High - Low + 1) * Rnd) + Low
Num1 = Rand
Do While Num1 = Num2 Or Num1 = Num3 Or Sheets(Csheet).Cells(Num1, 3) > 20
Rand = Int((High - Low + 1) * Rnd) + Low
Num1 = Rand
Loop
End Function
The number also needs to check that the word at heb[i].Known is false. I tried this one:
private int Rand(int Min, int Max)
{
int i;
int x = 0;
Random rnd = new Random();
oldNum[3] = oldNum[2];
oldNum[2] = oldNum[1];
oldNum[1] = oldNum[0];
do
{
i = rnd.Next(Min, Max);
x++;
}
while (Heb[i].Known==false && x<10000 && oldNum.Contains(i));
oldNum[0] = i;
return i;
}
Nevertheless it doesen't seem to cooperate too well... it returns 0 every time.
Min and Max is the Range in the list it randomises from (should be between 1 -30) Heb is the number of items in the list (about 500 - 1000 items) I initialize oldNum with:
int[] oldNum = new int[3];
rndstatic and call theRandomfunction only once. – Mr Lister Apr 28 '12 at 15:52Min, what isMax, how large isHeb, are there any trueKnownvalues inHeb, what do you initialiseoldNumwith, etc. – Mr Lister Apr 28 '12 at 16:05