Question: Hi, How can I get the below Java code to generate 7 random numbers between 1 to 50 in a row using an array. Get

Hi, How can I get the below Java code to generate 7 random numbers between 1 to 50 in a

row using an array. Get a print output with

7 random numbers in a row like this for example [2, 5, 10, 34, 22, 44, 12]

Thanks!

import java.util.Random; public class Main { public static void main(String[] args) { //int[] numbers = new int[7]; Random rnd = new Random(); int result = (int) Math.round(rnd.nextDouble() * (50) + 1); System.out.println(result); } }

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 Databases Questions!