Ask Question
31 August, 14:18

Type two statements that use nextint () to print 2 random integers between (and including) 100 and 149. end with a newline. ex: 112 102

+1
Answers (1)
  1. 31 August, 14:57
    0
    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;

    }

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Type two statements that use nextint () to print 2 random integers between (and including) 100 and 149. end with a newline. ex: 112 102 ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers