دالة اللوغاريتم في جافا
Java log() Method
الشرح Description
تُرجع الطريقة اللوغاريتم الطبيعي للوسيطة.
الصيغة Syntax
double log(double d)
الوسيطات Parameters
هنا تفاصيل المعلمات -
- d − اي نوع بيانات أولية
Return Value
- تُرجع هذه الطريقة اللوغاريتم الطبيعي للوسيطة.
مثال Example
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)); } }
المخرجات Output
The value of e is 2.7183 log(11.635) is 2.454