logo

Java Math.random() metódus

A java.lang.Math.random() 0,0-nál nagyobb vagy egyenlő és 1,0-nál kisebb álvéletlenszerű kettős típusú szám visszaadására szolgál. Az alapértelmezett véletlenszám mindig 0 és 1 között generálódik.

Ha meghatározott értéktartományt szeretne megadni, akkor a visszaadott értéket meg kell szoroznia a tartomány nagyságával. Például, ha azt szeretné, hogy a véletlen szám 0 és 20 között legyen, az eredményül kapott címet meg kell szorozni 20-zal, hogy megkapjuk a kívánt eredményt.

Szintaxis

 public static double random( ) 

Visszatérés

 It returns a pseudorandom double value greater than or equal to 0.0 and less than 1.0. 

1. példa

 public class RandomExample1 { public static void main(String[] args) { // generate random number double a = Math.random(); double b = Math.random(); // Output is different every time this code is executed System.out.println(a); System.out.println(b); } } 
Tesztelje most

Kimenet:

 0.2594036953954201 0.08875674000436018 

2. példa

 public class RandomExample2 { public static void main(String[] args) { // Generate random number between 0 to 20 double a = Math.random() * 20; double b = Math.random() * 20; // Output is different every time this code is executed System.out.println(a); System.out.println(b); } } 
Tesztelje most

Kimenet:

 19.09244621979338 14.762266967495655 

3. példa

 public class RandomExample3 { public static void main(String[] args) { // Generate random number between 5 to 30 double a = 5 + (Math.random() * 30); double b = 5 + (Math.random() * 30); // Output is different every time this code is executed System.out.println(a); System.out.println(b); } } 
Tesztelje most

Kimenet:

 21.30953881801222 29.762919341853877