show/hide this revision's text 6 deleted 226 characters in body

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 ;)

show/hide this revision's text 5 added 244 characters in body

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:

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 ;)

show/hide this revision's text 4 deleted 40 characters in body

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:

int ffx(int x)
{
    uint y = 0xC0000000 & (uint)x;

    uint z = 0x3FFFFFFF & (uint)x;

    const uint a = 0;
    const uint b = 0x40000000;
    const uint c = 0x80000000;
    const uint d = 0xC0000000;

    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 ;)

show/hide this revision's text 3 appease the population
show/hide this revision's text 2 deleted 455 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 1