Java 数学 floorMod() 方法
示例
返回向下取整除法的余数
System.out.println(Math.floorMod(10, 4));
System.out.println(Math.floorMod(-10, 4));
System.out.println(Math.floorMod(10, 3));
System.out.println(Math.floorMod(-10, 3));
亲自尝试 »
定义和用法
The floorMod()
方法返回两个整数相除的余数,其中除法的结果向下取整。
dividend - Math.floorDiv(dividend, divisor) * divisor
.
语法
以下其中之一
public static int floorMod(int dividend, int divisor)
public static long floorMod(long dividend, long divisor)
参数值
参数 | 描述 |
---|---|
dividend | 必填。余数运算的被除数。 |
divisor | 必填。余数运算的除数。 |
技术细节
返回 | An int or long value representing the remainder from a division between two integers. |
---|---|
抛出 | ArithmeticException - 如果除数为零。 |
Java 版本 | 1.8+ |
❮ 数学方法