ORIGINAL ANSWER
for all positive numbers,
f(n)
{
if (n > 0)
{
return -n;
}
return n;
}
EDIT Based off of comments, it seems that users think this answer is absolutely wrong and flagrantly bad. While I would say that it's partial (as i stated above when i originally posted it), considering the question it's both valid and correct. But to give something that is complete here's one that will work for everything except the negative max int or 0x40000000:
int ffx(int x)
{
uint y = 0xC0000000 & (uint)x;
const uint a = 0;
const uint b = 0x40000000;
const uint c = 0x80000000;
const uint d = 0xC0000000;
switch ((uint)x)
{
case a:
return b;
case b:
return a;
case c:
return b;
case d:
return c;
}
switch (y)
{
case a:
return x + (int)b;
case b:
return -(x - (int)b);
case c:
return -(x + (int)b);
case d:
return x - (int)b;
}
return 0;
}
hopefully this will at least satisfy those who believe this answer isn't worth the space it takes up ;)
