Answers for "what's the log() method in java"

2

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
Posted by: Guest on April-24-2021
0

log java

// Java program to demonstrate working
// of java.lang.Math.log() method
import java.lang.Math;
  
class Gfg {
      
    // driver code
    public static void main(String args[])
    {
  
        double a = -2.55;
        double b = 1.0 / 0;
        double c = 0, d = 145.256;
          
  
        // negative integer as argument, output NAN
        System.out.println(Math.log(a));
  
        // positive infinity as argument, output Infinity
        System.out.println(Math.log(b));
  
        // positive zero as argument, output -Infinity
        System.out.println(Math.log(c));
          
        // positive double as argument
        System.out.println(Math.log(d));
          
    }
}
Posted by: Guest on February-10-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language