Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

floorDiv()

Example

Carry out divisions resulting in integer values.

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 computes the integer division between two numbers, rounding down the result. Unlike regular integer division, negative results are rounded towards negative infinity instead of being truncated towards zero.

Syntax

One of the following:

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

Parameter Values

Parameter

Description

dividend

Needed: The dividend for the division operation.

divisor

Needed: The divisor for the division operation.

Technical Details

Returns:

An int or long value representing the result of integer

Throws:

ArithmeticException is thrown when the divisor is zero.

Java Version:

1.8+