Answered step by step
Verified Expert Solution
Question
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
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