We can calculate logarithm using the Math.log10()
and the Math.log()
static method call.
package org.kodejava.example.math;
public class LogarithmExample {
public static void main(String[] args) {
double number1 = 1000.0d;
// Get common logarithm
double log10 = Math.log10(number1);
System.out.println("Common logarithm of " + number1 + " = " + log10);
// Get natural logarithm
double loge = Math.log(number1);
System.out.println("Natural logarithm of " + number1 + " = " + loge);
}
}
The output of the program is:
Common logarithm of 1000.0 = 3.0
Natural logarithm of 1000.0 = 6.907755278982137
Latest posts by Wayan (see all)
- How do I install Calibri font in Ubuntu? - January 24, 2021
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020