Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

How can I add a method to the below Java code so the same random number not showing at print out. Example of how it

How can I add a method to the below Java code so the same random number not showing at print out. Example of how it not should be: [43, 41, 41, 20, 17, 16, 42] Thanks! import java.util.Arrays; import java.util.Random; public class Main { public static void main(String[] args) { int[] randomNumbers = new int[7]; Random random = new Random(); for (int i = 0; i < 7; i++) { randomNumbers[i] = random.nextInt(50) + 1; } System.out.println(Arrays.toString(randomNumbers)); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Demystifying Databases A Hands On Guide For Database Management

Authors: Shiva Sukula

1st Edition

8170005345, 978-8170005346

More Books

Students also viewed these Databases questions