Horje
Generate Random number using Math.random in Java Code Example
java random number
import java.util.Random;

Random rand = new Random();

// Obtain a number between [0 - 49].
int n = rand.nextInt(50);

// Add 1 to the result to get a number from the required range
// (i.e., [1 - 50]).
n += 1;
Generate Random number using Math.random in Java
class GenerateRandom {
    public static void main( String args[] ) {
      int min = 50;
      int max = 100;
        
      //Generate random int value from 50 to 100 
      System.out.println("Random value in int from "+min+" to "+max+ ":");
      int random_int = (int)Math.floor(Math.random()*(max-min+1)+min);
      System.out.println(random_int);
    }
}




Java

Related
resize array in java Code Example resize array in java Code Example
java 2 decimals Code Example java 2 decimals Code Example
spring security auto login after register Code Example spring security auto login after register Code Example
HttpContext.GetOwinContext().Authentication.SignOut Code Example HttpContext.GetOwinContext().Authentication.SignOut Code Example
use regex in if statement java Code Example use regex in if statement java Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13