Java Guava | IntMath log10(int x, RoundingMode mode) method with Examples Last Updated : 29 Jan, 2019 Comments Improve Suggest changes Like Article Like Report 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) Parameters: The method takes 2 parameters: x is the int value to be found log of. mode is the specified rounding mode. Return Value : This method returns Base-10 logarithm of x, rounded according to the specified rounding mode. Exceptions: This method throws following parameters: IllegalArgumentException: if the value x is 0 or a negative value. ArithmeticException: if mode is RoundingMode.UNNECESSARY and x is not a power of ten. 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 // log10(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 a1 = 10000; // Using log10(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. System.out.println( IntMath.log10(a1, RoundingMode.HALF_EVEN)); int a2 = 15; // Using log10(int x, RoundingMode mode) // method of Guava's IntMath class // The RoundingMode HALF_DOWN rounds towards // "nearest neighbor" unless both neighbors // are equidistant, in which case round down. System.out.println( IntMath.log10(a2, RoundingMode.HALF_DOWN)); } } Output : 4 1 Example 2 : Java // Java code to show implementation of // log10(int x, RoundingMode mode) method // of Guava's IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { static int findlog10(int x, RoundingMode mode) { try { // Using log10(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 x <= 0 int ans = IntMath.log10(x, mode); // Return the answer return ans; } catch (Exception e) { System.out.println(e); return -1; } } // Driver code public static void main(String args[]) { int x = -152; try { // Function calling findlog10(x, RoundingMode.HALF_EVEN); } catch (Exception e) { System.out.println(e); } } } Output : java.lang.IllegalArgumentException: x (-152) must be > 0 Reference: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/math/IntMath.html#log10-int-java.math.RoundingMode- Comment More infoAdvertise with us Next Article Java Guava | IntMath log10(int x, RoundingMode mode) method with Examples S Sahil_Bansall Follow Improve Article Tags : Java Java-Functions java-guava Guava-IntMath Practice Tags : Java 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.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(int x, RoundingMode mode) method of IntMath Class 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.UNNECESS 3 min read Java Guava | LongMath log10(long x, RoundingMode mode) method with Examples The method log10(long x, RoundingMode mode) of Guavaâs LongMath 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(long x, RoundingMode mode) Parame 3 min read Java Guava | log2(long x, RoundingMode mode) of LongMath Class with Examples The method log2(long x, RoundingMode mode) of Guava's LongMath Class 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(long x, RoundingMode mode) Parameter 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 Java Guava | LongMath.divide(long, long, RoundingMode) method with Examples The divide(long p, long q, RoundingMode mode) method of Guava's LongMath 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 long divide(long p, long q 3 min read NumberFormat setRoundingMode() method in Java with Examples The setRoundingMode() method is a built-in method of the java.text.NumberFormat which sets the RoundingMode used in this NumberFormat. The subclasses which handle different rounding modes should override this method. Syntax: public void setRoundingMode(RoundingMode mode) Parameters: The function acc 2 min read Java Guava | factorial(int n) method of IntMath Class with Examples The factorial(int n) method of Guava's IntMath Class returns the product of the first n positive integers, which is n!. Syntax: public static int factorial(int n) Parameter: The method accepts only one parameter n which is of integer type and is to be used to find the factorial. Return Value: This m 2 min read Java Guava | IntMath.checkedPow(int b, int k) method with Examples checkedPow(int b, int k) is a method of Guava's IntMath Class which accepts two parameters b and k and is used to find the k-th power of b. Syntax: public static int checkedPow(int b, int k) Parameters: The method accepts two parameters, b and k. The parameter b is called base which is raised to the 2 min read Like