java.lang.Math.log10(double a) 返回 以10為底的對數的 double 值。特殊情況:
以下是java.lang.Math.log10()方法的宣告
public static double log10(double a)
a -- 一個double值
此方法返回以10為底的對數的值。
NA
下面的例子顯示lang.Math.log10()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 60984.1; double y = 1000; // get the base 10 logarithm for x System.out.println("Math.log10(" + x + ")=" + Math.log10(x)); // get the base 10 logarithm for y System.out.println("Math.log10(" + y + ")=" + Math.log10(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.log10(60984.1)=4.78521661890635 Math.log10(1000)=3.0