当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.log10()用法及代码示例


java.lang.Math.log10() 用于找出以 10 为底的数字的对数。此方法返回 double 值的以 10 为底的对数。

用法

public static double log10(double x)

参数

x= a value entered by user

返回

This method returns the base 10 logarithm of a.
  • 如果参数为正值,则此方法将返回给定值的对数。
  • 如果整数 n 的参数等于 10n,则此方法将返回 n。
  • 如果参数为负值,则此方法将返回 NaN。
  • 如果参数为 NaN,则此方法将返回 NaN。
  • 如果参数是 Positive Infinity,则此方法将返回 Positive Infinity。
  • 如果参数是正零或负零,此方法将返回负无穷大。

例子1

public class Log10Example1
{
    public static void main(String[] args) 
    {
        double x = 38.9;
        // Input positive double, output logarithm of x  
        System.out.println(Math.log10(x));
    }
}

输出:

1.5899496013257077

例子2

public class Log10Example2
{
    public static void main(String[] args) 
    {
        double x = 100000;
         // A power of 10 as input
        System.out.println(Math.log10(x));
    }
}

输出:

5.0

例子3

public class Log10Example3
{
    public static void main(String[] args) 
    {
        double x = 1.0/0;
        // Input positive infinity, output Infinity
        System.out.println(Math.log10(x));
    }
}

输出:

Infinity

示例 4

public class Log10Example4
{
    public static void main(String[] args) 
    {
        double x = -45.8;
        // Input negative double, output NaN  
        System.out.println(Math.log10(x));
    }
}

输出:

NaN

例 5

public class Log10Example5
{
    public static void main(String[] args) 
    {
        double x = 0;
        // Input positive zero, output -Infinity
        System.out.println(Math.log(x));
    }
}

输出:

-Infinity






相关用法


注:本文由纯净天空筛选整理自 Java Math.log10() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。