Hi, I'm sure this is a very simple question! I have a Java method in which I'm summing a set of numbers. However, I want any negatives numbers to be treated as positives. So (1)+(2)+(1)+(-1) should equal 5. I'm sure there is very easy way of doing this - I just don't know how!! Any tips would be much appreciated.
|
|
Just call Math.abs? |
||||
|
|
|
The concept you are describing is called "absolute value", and Java has a function called Math.abs to do it for you. Or you could avoid the function call and do it yourself:
or
|
||||||||
|
|
|
Use the
|
||
|
|
|
|
The easiest, if verbose way to do this is to wrap each number in a Math.abs() call, so you would add:
with logic changes to reflect how your code is structured. Verbose, perhaps, but it does what you want. |
||
|
|
|
You're looking for absolute value, mate. |
||
|
|
|
|
Are you asking about absolute values? Math.abs(...) is the function you probably want. |
||
|
|
|
|
1 more Why don't you use: Ma..ab.... ... Oh. |
|||
|
|
|
|
You want to wrap each number into
prints out "1". If you want to avoid writing the
along with your imports, and you can refer to the
|
||
|
|
|
|
I knew it would be a very simple one - thanks guys! |
||
|
