bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java Math nextDown() Method

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java Math nextDown() Method?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___.out.println(Math.nextDown(1.0f));
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The nextDown() method returns the floating point number adjacent to a number in the negative direction, which is the highest possible floating point number that is less than the starting number.
Definition and Usage
Java Math nextDown() Method

❮ Math Methods

Example

System.out.println(Math.nextDown(1.0f));
System.out.println(Math.nextDown(1.0));
System.out.println(Math.nextDown(0.5f));
System.out.println(Math.nextDown(0.5));
System.out.println(Math.nextDown(Math.PI));
System.out.println(Math.nextDown(3.1415927f));

Definition and Usage

The nextDown() method returns the floating point number adjacent to a number in the negative direction, which is the highest possible floating point number that is less than the starting number. The return value for double type arguments will be closer to the starting number than the return value for float type arguments. Syntax One of the following: public static double nextDown(double start ) public static float nextDown(float start ) Parameter Values Parameter Description start Required. The number to start from. Technical Details Returns: A double or float value representing the floating point number adjacent to a starting number in the negative direction. Java version: 1.8+ ❮ Math Methods

The return value for double type arguments will be closer to the starting number than the return value for float type arguments. Syntax One of the following: public static double nextDown(double start ) public static float nextDown(float start ) Parameter Values Parameter Description start Required. The number to start from. Technical Details Returns: A double or float value representing the floating point number adjacent to a starting number in the negative direction. Java version: 1.8+ ❮ Math Methods

The return value for double type arguments will be closer to the starting number than the return value for float type arguments.

One of the following

public static double nextDown(double
start )
public static float nextDown(float
start )

Parameter Values

ParameterDescription
startRequired. The number to start from.

Technical Details

Returns:A double or float value representing the floating point number adjacent to a starting number in the negative direction.
Java version:1.8+

Previous

Java Math nextAfter() Method

Next

Java Math nextUp() Method