Java math function to convert positive int to negative and negative to positive?

后端 未结 13 2121
暗喜
暗喜 2020-12-01 04:29

Is there a Java function to convert a positive int to a negative one and a negative int to a positive one?

I\'m looking for a reverse function to perfor

相关标签:
13条回答
  • 2020-12-01 05:00
    x = -x;
    

    This is probably the most trivial question I have ever seen anywhere.

    ... and why you would call this trivial function 'reverse()' is another mystery.

    0 讨论(0)
提交回复
热议问题