Math类sqrt pow floor ceil abs round random

13Math类的方法_1

A:Math类中的方法
/*
* static double sqrt(double d)
* 返回参数的平方根
*/
public static void function_4(){
double d = Math.sqrt(-2);
System.out.println(d);
}

/*0
 * static double pow(double a, double b)
 * a的b次方
 */
public static void function_3(){
    double d = Math.pow(2, 3);
    System.out.println(d);
}

/*
 * static double floor(double d)
 * 返回小于或者等于参数d的最大整数
 */
public static void function_2(){
    double d = Math.floor(1.5);
    System.out.println(d);
}

/*
 *  static double ceil(double d)
 *  返回大于或者等于参数d的最小整数
 */
public static void function_1(){
    double d = Math.ceil(5.1);
    System.out.println(d);
}

/*
 *  static int abs(int i)
 *  获取参数的绝对值
 */
 public static void function(){
    int i = Math.abs(0);
    System.out.println(i);
 }

14Math类的方法_2

A:Math类的方法_2
/*

  • static double round(doubl d)
  • 获取参数的四舍五入,取整数
    */
    public static void function_6(){
    double d = Math.round(5.4195);
    System.out.println(d);
    }

/*

  • static double random() 返回随机数 0.0-1.0之间
  • 来源,也是Random类
    */
    public static void function_5(){
    for(int i = 0 ; i < 10 ;i++){
    double d = Math.random();
    System.out.println(d);
    }
    }

你可能感兴趣的:(Math类sqrt pow floor ceil abs round random)