| Author |
Can you guess the output of this program ?
|
salvin francis
Ranch Hand
Joined: Jan 12, 2009
Posts: 915
|
|
The puzzle is simple,
You have a program, you have to guess the output of this program, its not as simple as it looks.
You may use paper or calc, etc. If you want to know whats the right answer or you want to cheat, just run this program
All the best
|
My Website: [Salvin.in] Cool your mind:[Salvin.in/painting] My Sally:[Salvin.in/sally]
|
 |
salvin francis
Ranch Hand
Joined: Jan 12, 2009
Posts: 915
|
|
for those requiring help:
Math.pow(x,y);
x to the power of y:
eg: Math.pow(2,3) = 2 to the power of 3 = 8
---------------------
x^y
This is called XORing, refer to XOR
eg: 12^23=27
---------------------
int x = a + b++;
is equivalent to
int x = a + b;
b = b + 1;
---------------------
post here for any more assistance...
|
 |
 |
|
|
subject: Can you guess the output of this program ?
|
|
|