vote up -3 vote down star
1

You can convert a negative number to positive like this:

int myInt = System.Math.Abs(-5);

Is there an equivalent method to make a positive number negative?

Thanks

flag

69% accept rate
2  
280Z28: That is equivalent to myInt = -1. – recursive Aug 28 at 16:43
4  
This should be community wiki, for its entertainment value as well as for its being a cautionary tale on the dangers of having a head made of Legos. – MusiGenesis Aug 28 at 16:48
1  
has to be myInt |= int.MinValue; – Charles Bretana Aug 28 at 16:49
1  
For code clarity, I don't think you should use System.Math.Abs() if you want to just "convert a negative number to positive". Mathematically, that's not what Absolute Value is, even though you get the desired result. Depending on your algorithmic context, you should use the solution you've accepted below for going from negative to positive too. – Chris Dwyer Aug 28 at 16:53
1  
It's easier to ask than to think! That's a prooved fact. – backslash17 Aug 28 at 17:16
show 8 more comments

15 Answers

vote up 17 vote down check

How about?

int myInt = myInt * -1
link|flag
Good solution. :) – Papuccino1 Aug 28 at 16:25
Thanks, should of known, that's Friday afternoons for you... zzzz – Nick Crowther Aug 28 at 16:27
14  
This isn't an exact equivalent, as ABS will give a positive number whether it is positive or negative. This just switches the sign. It should be ABS(number) * -1 – Rex M Aug 28 at 16:29
4  
This solution is great because it can also convert negative to positive! Genius! – Will Eddins Aug 28 at 16:30
4  
I was under the impression you could just simply stick a "-" in front of anything to negate it... -myInt This would be the negative of the value in myInt... -ABS(myInt) would be a garaunteed negative. – DataDink Aug 28 at 16:39
vote up 6 vote down

Note to everyone who responded with

- Math.Abs(myInteger)

or

0 - Math.Abs(myInteger)

or

Math.Abs(myInteger) * -1

as a way to keep negative numbers negative and turn positive ones negative.

This approach has a single flaw. It doesn't work for all integers. The range of Int32 type is from "-231" to "231 - 1." It means there's one more "negative" number. Consequently, Math.Abs(int.MinValue) throws an OverflowException.

The correct way is to use conditional statements:

int neg = n < 0 ? n : -n;

This approach works for "all" integers.

link|flag
I'll toss you the point for correctness, but any code that depends on nobody taking the Abs of MinValue is brittle. – Steven Sudit Aug 28 at 21:23
Steven: Sometimes, you are solving a problem (like Abs) that can't possibly work for int.MinValue (assuming int return type.) In that case, it's completely OK to throw an exception. However, this specific problem has a "valid" result for int.MinValue but throws an exception if you take the Abs route. – Mehrdad Afshari Aug 28 at 21:30
but x |= int.MinValue works for all integers, including MinValue... – Charles Bretana Aug 28 at 23:18
vote up 4 vote down

Just for more fun:

int myInt = Math.Min(hisInt, -hisInt);

int myInt = -(int)Math.Sqrt(Math.Pow(Math.Sin(1), 2) + Math.Pow(Math.Cos(-1), 2))
            * Math.Abs(hisInt);
link|flag
Too risky, IMHO. What if the definition of a circle changes? – MusiGenesis Aug 28 at 17:07
1  
OK, how 'bout Math.Sin(-Math.Pi/2)* ... – Mike Dunlavey Aug 28 at 17:10
vote up 2 vote down
long negativeNumber = (long)positiveInt - (long)(int.MaxValue + 1);

Nobody said it had to be any particular negative number.

link|flag
Um, if you don't care that it has to be a particular negative number, you could simplify this to "long negativeNumber = -1;" – Beska Aug 28 at 17:13
Eh, just make it a byte. :) – MusiGenesis Aug 28 at 17:41
vote up 0 vote down

Maybe this?

int n;

.... some coding....

n = n<=0? n:0-n;

link|flag
vote up 6 vote down

Just for fun:

int negativeInt = int.Parse(String.Format("{0}{1}", 
    "-", positiveInt.ToString()));

Update: the beauty of this approach is that you can easily refactor it into an exception generator:

int negativeInt = int.Parse(String.Format("{0}{1}", 
    "thisisthedumbestquestioninstackoverflowhistory", positiveInt.ToString()));
link|flag
5  
Your right: It is easier to ask than to think, that's why questions like this appears. But the real problem is that there are people getting a lot of reputation answering questions like this. In the other side there are people breaking their brains to solve real problems and receiving just 1 vote up because none can undertand what they are solving. Interesting no? – backslash17 Aug 28 at 17:15
2  
@backslash17: I totally agree. There are many many examples of this phenomenon on StackOverflow, but this question is surely the most ridiculous of all. I mean, "how do you make a positive number negative?", and people are actually arguing over this? Are you serious? – MusiGenesis Aug 28 at 17:52
@backslash17 - Yes! – Charles Bretana Aug 28 at 20:18
Hey, friends, lighten up! I appreciate a chuckle once in a while, and the rep system won't capsize :-) – Mike Dunlavey Aug 28 at 20:48
1  
@MusicGenesis: And sometimes blatant falsehood is the straightest path to humor. – Steven Sudit Aug 29 at 0:55
show 10 more comments
vote up 0 vote down

To switch the sign of an integer, you just use the sign operator:

myInt = -myInt;

To make it negative regardless if the original value is negative or not, you first use the Abs method:

myInt = -Math.Abs(myInt);
link|flag
vote up 3 vote down

EDIT: This is wrong for positive inputs... I made mistake of forgetting that the rest of the bits in -x (2s-Complement value) are the 'opposite' of their value in +x, not the same. SO simply changing the sign bit will NOT work for positive numbers.

I'll leave this here for in for purposes...

Or the tricky way ( I think )...

int y = x | ~int.MaxValue;

cause int.MaxValue is 0111 1111 1111 1111 1111 1111 1111 1111

so

~int.MaxValue is      1000 0000 0000 0000 0000 0000 0000 0000

and therefore any int32 Or'ed with that will put a 1 in the sign bit, (making it negative), and leave all the other bits the same...

EDIT: actually, Since the 1000 0000 0000 0000 0000 0000 0000 0000 is actually the Minvalue, this should also work:

   int y = x | int.MinValue; // or, to do it to itself,
   x |= int.MinValue;
link|flag
So, negative zero equals int.MinValue? – recursive Aug 28 at 16:42
No, in twos complement, there is no negative zero. all ones is negative 1. A Signed 8Bit Int: 10000000 is -128 – Charles Bretana Aug 28 at 16:46
1  
+1 because no one deserves to be downvoted for answering a question like "what letter comes after A but before C?" – MusiGenesis Aug 28 at 17:10
... and, thanks to @Mehrad's answer below, This is the only approach that works when input is int.MinValue... – Charles Bretana Aug 28 at 23:20
Charles: This is wrong. For negative numbers, it works but for positive numbers, just flipping the sign bit doesn't make -number. 1 is all zeros and a one. Or-ing it with int.MinValue will result 10000000000000000000000000000001 which is not equal to -1 (all ones.) – Mehrdad Afshari Aug 28 at 23:40
show 1 more comment
vote up 1 vote down
int myInt = - System.Math.Abs(-5);
link|flag
vote up 6 vote down

The same way you make anything else negative: put a negative sign in front of it.

var positive = 6;
var negative = -positive;
link|flag
1  
Everyone forgets the unary minus. – recursive Aug 28 at 16:29
+1.. beat me to it. – James Atkinson Aug 28 at 16:35
vote up 30 vote down

int negInt = -System.Math.Abs(myInt)

link|flag
Nicer than "* -1". – Steven Sudit Aug 28 at 16:36
It is? – Joel Mueller Aug 28 at 18:03
1  
Yes, because negation is the goal, so a unary minus is the right operator. On the other hand, multiplying by negative one is just a trick to negate a value. – Steven Sudit Aug 28 at 19:30
A trick? Who are you fooling? – Shog9 Aug 28 at 20:37
It's a trick because it counts on a side-effect, not the primary effect. The primary effect of unary minus is to negate. The primary effect of multiplication is to multiply. It just so happens that multiplying by -1 negates. Is that clearer? – Steven Sudit Aug 28 at 21:21
vote up 0 vote down

Multiply it by -1.

link|flag
vote up 7 vote down

The easy way:

myInt *= -1;
link|flag
vote up 52 vote down

int myNegInt = System.Math.Abs(myNumber) * (-1);

link|flag
8  
+1 for remembering that if it'a already a negative you'd have the opposite effect. Your answer is the only one that would always give a negative number regardless of whether the myNumber is positive or negative. – David Stratton Aug 28 at 16:26
Only 26 votes for this answer? Are there SO users that think this wouldn't work? – MusiGenesis Aug 28 at 16:50
2  
30 up votes? Already the question is so simple. And this over-complicated answer (-System.Math.Abs(myNumber) would also do) gets 30 up votes???? – rstevens Aug 28 at 16:53
2  
@rstevens everyone collaboratively trying to indicate this answer is far more correct than the accepted one. Also, - vs * -1 is definitely not "over-complicated". – Rex M Aug 28 at 16:58
2  
I like this answer better than the -System.Math.Abs one, since it is a bit more obvious at a glance what is happening...I think it would be slightly easier to miss the "-" in front of the statement. – Beska Aug 28 at 17:11
show 1 more comment
vote up 9 vote down
int negInt = 0 - myInt;

Or guaranteed to be negative.

int negInt = -System.Math.Abs(someInt);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.