logo

Java Math.random() -menetelmä

The java.lang.Math.random() käytetään palauttamaan näennäissatunnainen kaksoistyyppinen luku, joka on suurempi tai yhtä suuri kuin 0,0 ja pienempi kuin 1,0. Oletussatunnaisluku luodaan aina välillä 0 ja 1.

Jos haluat tietyn arvoalueen, sinun on kerrottava palautettu arvo alueen suuruudella. Jos esimerkiksi haluat saada satunnaisluvun väliltä 0-20, tuloksena oleva osoite on kerrottava 20:llä halutun tuloksen saamiseksi.

Syntaksi

 public static double random( ) 

Palata

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

Esimerkki 1

 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); } } 
Testaa nyt

Lähtö:

 0.2594036953954201 0.08875674000436018 

Esimerkki 2

 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); } } 
Testaa nyt

Lähtö:

 19.09244621979338 14.762266967495655 

Esimerkki 3

 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); } } 
Testaa nyt

Lähtö:

 21.30953881801222 29.762919341853877