Java 中的 Math floorMod()方法
原文:https://www.geeksforgeeks.org/math-floormod-method-in-java/
java . lang . math . Bloommod()是 Java 中的内置数学函数,它返回传递给它的整数参数的地板模数。因此,楼层模数为(a –(楼层 Div(a,b) * b)) ,与除数 b 符号相同,在 -abs(b) < t < +abs(b) 范围内。
楼面 Div 和楼面 Mod 之间的关系是:
洪水淹没区(a,b) * b +洪水淹没区(a,b) == a
floorMod 和 % 运算符之间的值差异是由于返回小于或等于商的整数的 floorDiv 和返回最接近零的整数的 / 运算符之间的差异。
语法:
public static int floorMod(*data_type a, data_type b*)
参数:函数接受两个参数。
- a :这是指分红值。
-
b: This refers to the divisor value.
参数可以是数据类型 int 或 long 。
异常:如果除数为零,则抛出算法异常。
返回值:该方法返回楼层模数 x–(楼层(x,y) * y)。
下面的程序用来说明 Java . lang . math . Bloommod()方法的工作原理。 节目一:
// Java program to demonstrate working
// of java.lang.Math.floorMod() method
import java.lang.Math;
class Gfg1 {
public static void main(String args[])
{
int a = 25, b = 5;
System.out.println(Math.floorMod(a, b));
// Divisor and dividend is having same sign
int c = 123, d = 50;
System.out.println(Math.floorMod(c, d));
// Divisor is having negative sign
int e = 123, f = -50;
System.out.println(Math.floorMod(e, f));
// Dividend is having negative sign
int g = -123, h = 50;
System.out.println(Math.floorMod(g, h));
}
}
Output:
0
23
-27
27
程序 2:
// Java program to demonstrate working
// of java.lang.Math.floorMod() method
import java.lang.Math;
class Gfg2 {
public static void main(String args[])
{
int x = 200;
int y = 0;
System.out.println(Math.floorMod(x, y));
}
}
输出:
Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: / by zero
at java.lang.Math.floorDiv(Math.java:1052)
at java.lang.Math.floorMod(Math.java:1139)
at Gfg2.main(File.java:13)
参考:https://docs . Oracle . com/javase/8/docs/API/Java/lang/math . html # floodmod-int-int-
版权属于:月萌API www.moonapi.com,转载请注明出处