Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
645662
Topic
53923
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;
}