Post
Topic
Board Beginners & Help
Re: BTC_Challenge
by
antihexe
on 10/12/2011, 00:09:39 UTC
For 0.1271828183 BTC, What is stored in alpha when this pseudocode is finished executing? (EX: Alpha contains {0,1,2,3,4})

int[] alpha = new int[5];
int j = 0;

While(j<5)
{
   alpha[j] = j + 5;

   if (j % 2 == 1)
   alpha[j - 1] = alpha[j] + 2;
   j = j + 1;
}