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
|
1
|
You can convert a negative number to positive like this:
Is there an equivalent method to make a positive number negative? Thanks
|
||||||||||||||||||||
|
|
|
How about?
|
||||||||||||||||
|
|
|
Note to everyone who responded with
or
or
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 The correct way is to use conditional statements:
This approach works for "all" integers. |
||||||
|
|
|
Just for more fun:
|
||||||
|
|
|
Nobody said it had to be any particular negative number. |
||||
|
|
|
Maybe this? int n; .... some coding.... n = n<=0? n:0-n; |
||
|
|
|
|
Just for fun:
Update: the beauty of this approach is that you can easily refactor it into an exception generator:
|
||||||||||||||||
|
|
|
To switch the sign of an integer, you just use the sign operator:
To make it negative regardless if the original value is negative or not, you first use the Abs method:
|
||
|
|
|
|
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;
so
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:
|
||||||||||||
|
|
|
|
||
|
|
|
|
The same way you make anything else negative: put a negative sign in front of it.
|
||||||
|
|
|
int negInt = -System.Math.Abs(myInt) |
||||||||||||
|
|
|
Multiply it by -1. |
||
|
|
|
|
The easy way:
|
||
|
|
|
|
int myNegInt = System.Math.Abs(myNumber) * (-1); |
||||||||||||||||||
|
|
|
Or guaranteed to be negative.
|
||
|
|