Log.i java code example
Example: how to get logarithm in java
import java.lang.Math;
int y = 69;
double x = Math.log(y); // this will return the log base e of a number
// for log base b (anything else from e)
double x = Math.log(y)/Math.log(b); // this will return the log base b of a number