Answered step by step
Verified Expert Solution
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started