About 215,000 results
Open links in new tab
  1. Finding absolute value of a number without using Math.abs ()

    Jun 13, 2012 · Is there any way to find the absolute value of a number without using the Math.abs () method in java.

  2. java - How do you get absolute values and square roots - Stack …

    1 Use the java.lang.Math class, and specifically for absolute value and square root:, the abs() and sqrt() methods.

  3. java - Finding absolute value with if statement - Stack Overflow

    Dec 20, 2015 · I have 2 int variables which the user needs to enter, and I need to find the absolute value of their difference, is there a way to do it on the same principle I have started in …

  4. How to get the absolute value of a number in JavaScript

    I want to get the absolute value of a number in JavaScript. That is, drop the sign. I know mathematically I can do this by squaring the number then taking the square root, but I also …

  5. java - How to use a number given in a string to calculate the …

    Sep 23, 2016 · You can see how I want to calculate the absolute value in my code. Where I'm stuck: How do I extract the number given in a string and use that number to calculate the abs …

  6. Java: Max and Min in absolute value - Stack Overflow

    Aug 10, 2012 · 5 Math.min() returns the lowest of the two parameters passed into it. In the example above, you're providing it with arguments of 999 and 2 (The absolute values …

  7. how to get absolute value of a number in java using bit …

    Feb 21, 2014 · I want to implement a function to get the absolute value of a number in java: do nothing if it is positive, if it is negative, convert to positive. I want to do this only using bit …

  8. java - Iterate over two strings checking to see if it matches with its ...

    Feb 6, 2022 · In the end, you can add absolute difference of length between seq1 and seq2 and return that value to the main function. For the logic, all you have to do is apply 4 if conditions to …

  9. java - Make a negative number positive - Stack Overflow

    Jan 30, 2009 · Well, as for how you actually do it in Java, it's very simple, because Java already provides a function for that, in the Math class: value = Math.abs(value); Yes, doing it without …

  10. get absolute value without using abs function nor if statement

    Mar 19, 2012 · I was thinking how to get the absolute value of an integer without using if statement nor abs (). At first I was using shift bits left (<<), trying to get negative sign out of the …