指数函数方法
Math类提供了几种指数计算方法,如表所示
代码如下所示:
//指数函数方法示例
public class Demo {
public static void main(String[] args) {
System.out.println("e的2次方:"+ Math.exp(2));
System.out.println("e的自然对数为:"+ Math.log(Math.E));
System.out.println("以 10为底 10的对数为:" + Math.log10(10));
System.out.println("1.44的平方根为:"+ Math.sqrt(1.44));
System.out.println("27的立方根为:"+ Math.cbrt(27));
System.out.println("2的2次方值为:"+ Math.pow(2, 2));
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>