📜  Java的数学floorDiv()方法

📅  最后修改于: 2021-05-06 07:54:42             🧑  作者: Mango

Java的.lang.Math.floorDiv()是一个内置在Java中的数学函数返回最大的(最接近正无穷大)int值小于或等于代数商。由于floorDiv()是静态的,因此不需要创建对象。

句法:

public static int floorDiv(data_type x, data_type y)

参数:该函数接受两个参数,如下所述。

  • x:第一个参数指的是股利值。
  • y:第二个参数指除数。

    参数可以是数据类型intlong。

例外:

  • ArithmeticException:如果除数为零,则抛出ArithmeticException。

返回值:此方法返回小于或等于代数商的最大(最接近正无穷大)整数值。

下面的程序说明了Java.lang.Math.floorDiv()方法:

程序1:

// Java program to demonstrate working
// of java.lang.Math.floorDiv() method
import java.lang.Math;
  
class Gfg1{
      
    // driver code
    public static void main(String args[])
    {
        int a = 25, b = 5;
        System.out.println(Math.floorDiv(a, b));
  
        // 125/50 value is 2.5, but as output is integer
        // less than or equal to 2.5, So output is 2
        int c = 125, d = 50;
        System.out.println(Math.floorDiv(c, d));
    }
}
输出:
5
2

程式2:

// Java program to demonstrate working
// of java.lang.Math.floorDiv() method
import java.lang.Math;
  
class Gfg2 {
  
    // driver code
    public static void main(String args[])
    {
        int x = 200;
        int y = 0;
  
        System.out.println(Math.floorDiv(x, y));
    }
}

输出:

Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: / by zero
    at java.lang.Math.floorDiv(Math.java:1052)
    at Gfg2.main(File.java:13)