Java Math.log() 方法
java.lang.Math.log() 用来找出任何double值的对数值。此方法返回double值的自然对数(以e为底)。
1 语法
public static double log(double x)
2 参数
x :用户输入的值
3 返回值
返回double值的自然对数。
- 如果参数为正值,则此方法将返回给定值的对数。
- 如果参数为负值,则此方法将返回NaN。
- 如果参数不是数字(NaN),则此方法将返回NaN。
- 如果参数为正无穷大,则此方法将返回正无穷大。
- 如果参数为正零或负零,则此方法将返回Negative Infinity。
4 示例1
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double x = 38.9;
// 输入正整数,输出x的对数
System.out.println(Math.log(x));
}
}
输出结果为:
3.6609942506244004
5 示例2
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double x = -70.4;
// 输入负double值,输出NaN
System.out.println(Math.log(x));
}
}
输出结果为:
NaN
6 示例3
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double x = 1.0/0;
// 输入正无穷大,输出无穷大
System.out.println(Math.log(x));
}
}
输出结果为:
Infinity
7 示例4
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double x = 0;
// 输入正零,输出-Infinity
System.out.println(Math.log(x));
}
}
输出结果为:
-Infinity
热门文章
优秀文章