• 大小: 1.79KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 指数与对数运算(基础篇-实例208).zip

资源截图

代码片段和文件信息

package com.mingrisoft.math;

public class MathUtil {
    
    public static void main(String[] args) {
        System.out.println(“8的立方根是:“ + Math.cbrt(8));
        System.out.println(“e的8次方是:“ + Math.exp(8));
        System.out.println(“e的8次方-1是:“ + Math.expm1(8));
        System.out.println(“8的自然对数是:“ + Math.log(8));
        System.out.println(“8的10为底的对数是:“ + Math.log10(8));
        System.out.println(“9的自然对数是:“ + Math.log1p(8));
        System.out.println(“2的3次方是:“ + Math.pow(2 3));
        System.out.println(“8的平方根是:“ + Math.sqrt(8));
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2010-09-11 17:01  .classpath
     文件         379  2010-09-11 17:01  .project
     文件        1330  2013-11-21 08:41  bin\com\mingrisoft\math\MathUtil.class
     文件         619  2013-11-20 10:07  src\com\mingrisoft\math\MathUtil.java

评论

共有 条评论