Question: Do you use nextInt(int range) to write a statement that imports a random class? // WRITE A STATEMENT THAT IMPORTS THE RANDOM CLASS public class

Do you use nextInt(int range) to write a statement that imports a random class?

// WRITE A STATEMENT THAT IMPORTS THE RANDOM CLASS

public class Dice

{

//-----------------------------------------------

// Rolls two die by generating two random numbers in the range 1 - 6.

//-----------------------------------------------

public static void main (String[] args)

{

int die1, die2;

int totalRoll;

// CREATE A RANDOM OBJECT NAMED generator

// ASSIGN die1 THE VALUE OF THE RANDOM OBJECT

// DO NOT INCLUDE THE NUMBER 0

// ASsIGN die2 THE VALUE OF THE RANDOM OBJECT

// DO NOT INCLUDE THE NUMBER 0

totalRoll = die1 + die2;

System.out.println();

System.out.println ("You rolled " + die1 + " and " + die2 +

" for a total of " + totalRoll + ".");

System.out.println();

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!