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

random()

Example

Produce a random number.

System.out.println(Math.random());

Definition and Usage

The random() method yields a random number within the range of 0 to 1.

It’s important to note that while this method can produce a value of 0, it never returns exactly 1.

Syntax

public static double random() 

Technical Details

Returns:

A double value representing a randomly chosen number within the range of 0 to 1, where 1 itself is excluded.

Java Version:

Any