Type two statements that use nextint() to print 2 random integers between (and including) 100 and 149. end with a newline. ex: 112 102
Question
Answer:
NB- Solution is emboldened
Β
import java.util.Scanner;
import java.util.Random;
public class RandomGenerateNumbers {
public static void main (String [] args) {
Random randGen = new Random();
int seedVal = 0;
seedVal = 4;
randGen.setSeed(seedVal);
System.out.println(randGen.nextInt(50) + 100);
System.out.println(randGen.nextInt(50) + 100);
return;
}
}
solved
general
10 months ago
7798