Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions

Question

CL I P COL Astro- L(1-cas0) Lsing *A=2 L sin(0/2)

Answered: 1 week ago