bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java Math floorDiv() Method

❮ Math Methods

Example

System.out.println(Math.floorDiv(10, 5));
System.out.println(Math.floorDiv(10, 4));
System.out.println(Math.floorDiv(-10, 4));
System.out.println(Math.floorDiv(-10, 5));

Definition and Usage

The floorDiv() method returns the division between two integers rounded down. This is different from an ordinary integer division in that negative results are rounded down away from zero instead of truncated towards it.

One of the following

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

Parameter Values

ParameterDescription
dividendRequired. The dividend of the division.
divisorRequired. The divisor of the division.

Technical Details

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

Previous

Java Math floor() Method

Next

Java Math floorMod() Method