Where is the problem in the following code sequence? The code is intended to generate random numbers between 1 and 20 until the number is either a 5 or a 10 or a 15. Random random = new Random(); int number = 1 + random.nextInt(20); while(number != 5 || number != 10 || number != 15) { number = 1 + random.nextInt(20); } System.out.println("number is " + number);

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 11RQ
icon
Related questions
Question

HELP NEEDED ASAP FOR HW!

LANGUAGE JAVA

Where is the problem in the following code sequence? The code is intended to generate random numbers between 1 and 20 until the number is either a 5 or a 10 or a 15.

Random random = new Random();

int number = 1 + random.nextInt(20);

while(number != 5 || number != 10 || number != 15)

{

number = 1 + random.nextInt(20);

}

System.out.println("number is " + number);

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT