java.lang.Math.log10(double a)方法實例
java.lang.Math.log10(double a) 返回 以10為底的對數的 double 值。特殊情況:
- 如果參數為NaN或小於零,那麼結果為NaN。
- 如果參數為正無窮大,那麼結果為正無窮大。
- 如果參數為正零或負零,那麼結果是負無窮大。
- 如果參數等於10n整數n,那麼結果是n。
聲明
以下是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