logo

Java Math.random() metodas

The java.lang.Math.random() naudojamas norint grąžinti pseudoatsitiktinį dvigubo tipo skaičių, didesnį arba lygų 0,0 ir mažesnį nei 1,0. Numatytasis atsitiktinis skaičius visada generuojamas nuo 0 iki 1.

Jei norite nustatyti konkretų reikšmių diapazoną, grąžintą reikšmę turite padauginti iš diapazono dydžio. Pavyzdžiui, jei norite gauti atsitiktinį skaičių nuo 0 iki 20, gautą adresą reikia padauginti iš 20, kad būtų gautas norimas rezultatas.

Sintaksė

 public static double random( ) 

Grįžti

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

1 pavyzdys

 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); } } 
Išbandykite dabar

Išvestis:

 0.2594036953954201 0.08875674000436018 

2 pavyzdys

 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); } } 
Išbandykite dabar

Išvestis:

 19.09244621979338 14.762266967495655 

3 pavyzdys

 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); } } 
Išbandykite dabar

Išvestis:

 21.30953881801222 29.762919341853877