Respuesta :
Answer:
random1 = randGen.nextInt(10);
random2 = randGen.nextInt(10);
The value of 10 as a scaling factor is used because counting 0 - 9 inclusive, we have 10 possibilities.
Explanation:
// Random class is imported to allow the program generate random object
import java.util.Random;
//The class definition
public class Solution {
// main method is defined which signify beginning of program execution
public static void main(String[ ] args) {
// Random object called randGen is declared
Random randGen = new Random();
// random variable 1
int random1;
// random variable 2
int random2;
// random1 is generated and printed
System.out.println(random1 = randGen.nextInt(10));
// random2 is generated and printed
System.out.println(random2 = randGen.nextInt(10));
}
}
Answer:
import java.util.Random;
public class RandomGenerator
{
public static void main(String[] args) {
Random randomGenerator = new Random();
int seed = 0;
randomGenerator.setSeed(seed);
System.out.println(randomGenerator.nextInt(10));
System.out.println(randomGenerator.nextInt(10));
}
}
Explanation:
In order to create random number using java.util.Random class, we need to create an object from the class, set a seed value, and call the appropriate function. In this case, the object is created as randomGenerator, the seed value is set to 0. To create the integers, we need to use nextInt(). This function takes one parameter to specify the range, and creates a number between 0 and given number (given number is not included). Since, it is asked to create integers between 0 and 9, we should pass 10 as a parameter.