首页 > 其他分享 >5、Math类

5、Math类

时间:2022-09-19 21:11:05浏览次数:34  
标签:pow System ceil abs Math out

Math类

  1. Math类包含用于执行基本数学运算的方法,如初等数学,对数,平方根和三角函数

  2. 常用方法

    //Math 常用方法(静态方法)
    //1.abs 绝对值
    int abs = Math.abs(-9);
    System.out.println(abs);
    //2.pow 求幂
    double pow = Math.pow(2,4);
    System.out.println(pow); //16.0
    //3.ceil 向上取整,返回>=该参数的最小整数(转成double)
    double ceil = Math.ceil(3.9);
    System.out.println(ceil);//4.0
    //4.floor 向下取整数,返回<=该参数的最大整数(转成double)
    double floor = Math.floor(4.99);
    System.out.println(floor);//4.0
    //5.round 四舍五入 Math.floor(该参数+0.5)
    long round = Math.round(5.51);
    System.out.println(round);//6
    //6.sqrt 求开方
    double sqrt = Math.sqrt(9.0);
    System.out.println(sqrt);//3.0
    //7.random 求随机数
    // random返回的是 0 <= x < 1 之间的一个随机小数
    // a - b 之间的整数:(int)(a + Math.random() * (b - a + 1))
    for (int i = 0; i < 20; i++) {
        System.out.print((int)(2 + Math.random() * (7 - 2 + 1)));
    }
    //8.max , min 返回最大值和最小值
    int min = Math.min(1,9);
    int max = Math.max(45,90);
    System.out.println("min=" + min);
    System.out.println("max=" + max);
    

标签:pow,System,ceil,abs,Math,out
From: https://www.cnblogs.com/muzhe777/p/16709086.html

相关文章

  • 【Python】math 模块用法
    math模块一些用法trunc(x)传入整数或浮点数,返回数值的整数部分,忽略小数部分,不会四舍五入importmathmath.trunc(2.77)#2math.trunc(8.32)#8math.trunc......
  • jerry99的序列 --binary search, math
      #include<bits/stdc++.h>usingnamespacestd;usingi64=longlong;constintN=1e5+10;constintM=N-10;inttot,vis[N],prime[N];//#define......
  • MathProblem 84 12 pearls and a scale problem
    Infrontofyouare12pearls,11beingrealandonefake.Therealonesallweighthesameandthefakeonediffersinweightfromtherealones(mayweighmo......
  • math.h随记二
    浮点数常量,编译出来的结果直接就是按照十六进制的long存在.LC0的数据段使用指针的方法进行强转,试验值是否相等:......
  • math.h -lm随记(一)
    最近可能随手会记很多C/C++语法相关的东西,都是随手记的,如果后续有空可能会整理成文章。1.关于gcc的lm编译选项:观察易知,像stdio.h,stdlib.h或者math.h之类的头文件,包含的都......
  • MathProblem 80 128 pennies and a blindfold problem
    Youareblindfoldedbeforeatable.Onthetableareaverylargenumberofpennies.Youaretold128ofthepenniesareheadsupandtherestaretailsup.Ho......
  • MathProblem 79 Three humans, three monkeys, and a boat problem
    Oneonesideofariverarethreehumans,onebigmonkey,twosmallmonkeys,andoneboat.Eachofthehumansandthebigmonkeyarestrongenoughtorowtheb......
  • 关于 Math.random()生成指定范围内的随机数的公式推导
    关于Math.random()生成指定范围内的随机数的公式推导在java中,用于生成随机数的Math方法random()只能生成0-1之间的随机数,而对于生成指定区间,例如a-b之间的随机......
  • JavaMath类
    方法描述abs()返回参数的绝对值ceil()对number类型变量向上取整,返回值类型为double类型floor()对number类型变量向下取整,返回值类型为double类型rint......
  • MathProblem 76 Two bags and marble problem
    Youchooseoneoftwoidenticallookingbagsatrandom.Onebaghasthreeblackmarblesandonewhitemarble.Theotherhasthreewhitemarblesandoneblackm......