bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java Math floorMod() Method

❮ Math Methods

Example

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));

Definition and Usage

The floorMod() method returns the remainder of a division between two integers where the result of the division was rounded down.

Syntax One of the following: public static int floorMod(int dividend , int divisor ) public static long floorMod(long dividend , long divisor ) Parameter Values Parameter Description dividend Required. The dividend of the remainder operation. divisor Required. The divisor of the remainder operation. Technical Details Returns: An int or long value representing the remainder from a division between two integers. Throws: ArithmeticException - If the divisor is zero. Java version: 1.8+ ❮ Math Methods

One of the following

public static int floorMod(int
dividend , int
divisor )
public static long floorMod(long
dividend , long
divisor )

Parameter Values

ParameterDescription
dividendRequired. The dividend of the remainder operation.
divisorRequired. The divisor of the remainder operation.

Technical Details

Returns:An int or long value representing the remainder from a division between two integers.
Throws:ArithmeticException - If the divisor is zero.
Java version:1.8+

Previous

Java Math floorDiv() Method

Next

Java Math getExponent() Method