Java - méthode log ()

La description

La méthode renvoie le logarithme naturel de l'argument.

Syntaxe

double log(double d)

Paramètres

Voici le détail des paramètres -

  • d - Tout type de données primitif.

Valeur de retour

  • Cette méthode renvoie le logarithme naturel de l'argument.

Exemple

public class Test { 

   public static void main(String args[]) {
      double x = 11.635;
      double y = 2.76;

      System.out.printf("The value of e is %.4f%n", Math.E);
      System.out.printf("log(%.3f) is %.3f%n", x, Math.log(x));
   }
}

Cela produira le résultat suivant -

Production

The value of e is 2.7183
log(11.635) is 2.454