Java Guava | sqrt(int x, RoundingMode mode) method of IntMath Class Last Updated : 21 Jan, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The method sqrt(int x, RoundingMode mode) of Guava's IntMath class returns the square root of x, rounded with the specified rounding mode. Syntax: public static int sqrt(int x, RoundingMode mode) Exceptions: IllegalArgumentException: if x < 0. ArithmeticException: if mode is RoundingMode.UNNECESSARY and sqrt(x) is not an integer. Enum RoundingMode Enum Constant Description CEILING Rounding mode to round towards positive infinity. DOWN Rounding mode to round towards zero. FLOOR Rounding mode to round towards negative infinity. HALF_DOWN Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case round down. HALF_EVEN Rounding mode to round towards the "nearest neighbor" unless both neighbors are equidistant, in which case, round towards the even neighbor. HALF_UP Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case round up. UNNECESSARY Rounding mode to assert that the requested operation has an exact result, hence no rounding is necessary. UP Rounding mode to round away from zero. Below given are some examples to understand the implementation in a better way : Example 1: Java // Java code to show implementation of // sqrt(int x, RoundingMode mode) method // of Guava's IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { // Driver code public static void main(String args[]) { int x1 = 226; // Using sqrt(int x, RoundingMode mode) // method of Guava's IntMath class // The RoundingMode HALF_EVEN rounds towards // the nearest neighbor unless both neighbors // are equidistant, in which case, round towards // the even neighbor. int ans1 = IntMath.sqrt(x1, RoundingMode.HALF_EVEN); System.out.println("Square root of x1 is: " + ans1); int x2 = 154; // Using sqrt(int x, RoundingMode mode) // method of Guava's IntMath class // The RoundingMode FLOOR rounds towards // negative infinity. int ans2 = IntMath.sqrt(x2, RoundingMode.FLOOR); System.out.println("Square root of x2 is: " + ans2); } } Output: Square root of x1 is: 15 Square root of x2 is: 12 Example 2: Java // Java code to show implementation of // sqrt(int x, RoundingMode mode) method // of Guava's IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { // Driver code public static void main(String args[]) { int x1 = -65; try { // Using sqrt(int x, RoundingMode mode) // method of Guava's IntMath class // The RoundingMode HALF_EVEN rounds towards // the nearest neighbor unless both neighbors // are equidistant, in which case, round towards // the even neighbor. // This should throw "IllegalArgumentException" // as x1 < 0 int ans1 = IntMath.sqrt(x1, RoundingMode.HALF_EVEN); } catch (Exception e) { System.out.println(e); } } } Output: java.lang.IllegalArgumentException: x (-65) must be >= 0 Reference: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/math/IntMath.html#sqrt-int-java.math.RoundingMode- Comment More infoAdvertise with us Next Article Java Guava | sqrt(int x, RoundingMode mode) method of IntMath Class B bansal_rtk_ Follow Improve Article Tags : Misc Java Java-Functions java-guava Practice Tags : JavaMisc Similar Reads Java Guava | log2(int x, RoundingMode mode) method of IntMath The log2(int x, RoundingMode mode) method of Guava's IntMath accepts two parameters and calculates the base-2 logarithmic value of the first parameter rounded according to the rounding mode specified by the second parameter. Syntax : public static int log2(int x, RoundingMode mode) Parameters : The 3 min read Java Guava | IntMath log10(int x, RoundingMode mode) method with Examples The log10(int x, RoundingMode mode) method of Guavaâs IntMath Class accepts two parameters and calculates the base-10 logarithmic value of the first parameter rounded according to the rounding mode specified by the second parameter. Syntax: public static int log10(int x, RoundingMode mode) Parameter 3 min read Java Guava | mod() method of IntMath Class The mod(int x, int m) method of Guava's IntMath class accepts two parameters x and m and used to calculate the value of x modulus under m. Syntax : public static int mod(int x, int m) Parameters: This method accepts two parameters x and m which are of integer types and calculate x modulo m. Return V 2 min read Java Guava | IntMath.divide(int, int, RoundingMode) method with Examples The divide(int p, int q, RoundingMode mode) method of Guava's IntMath Class accepts three parameters and calculates the result of dividing first parameter by second parameter, rounded according to the rounding mode specified by the third parameter. Syntax: public static int divide(int p, int q, Roun 3 min read Java Guava | sqrt(long x, RoundingMode mode) of LongMath Class with Examples The method sqrt(long x, RoundingMode mode) of Guava's LongMath Class accepts two parameters and calculates the square root of the first parameter rounded according to the rounding mode specified by the second parameter. Syntax: public static long sqrt(long x, RoundingMode mode) Parameters: This meth 3 min read Like