Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Here is the code to complete: import java.util.Scanner; //Fixme(1) add a statement to import the Random class public class RandomTest { public static void main(String[]

image text in transcribed

Here is the code to complete:

import java.util.Scanner; //Fixme(1) add a statement to import the Random class

public class RandomTest { public static void main(String[] args) { Scanner scnr = new Scanner(System.in);

System.out.println("Enter the seed: "); int seed = scnr.nextInt(); //Fixme(2) create a Random object with the user entered seed //Fixme(3) Generate and print out a random integer in the range of 0 to 100. //Fixme(4) Generate and print out a random integer in the range of -50 to 50. //Fixme(5) Generate and print out a random decimal number in the range of 0 to 1.0. //Fixme(6) Generate and print out a random decimal number in the range of 0 to 100.0. } }

1.8 zyLab1: Random class In this lab, we are going to create objects of the Random class and call different methods defined in the Random class to generate ranom numbers. Random class is defined Java SDK, and you may read its documentation at the following link https://docs.oracle.com/javase/8/docs/api/index.html?java/util/Random.html Ex: if user enters 100, the output will be as follow Enter the seed: 100 92 0.19497605734770518 66.71595726539502

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

Statistical And Scientific Database Management International Working Conference Ssdbm Rome Italy June 21 23 1988 Proceedings Lncs 339

Authors: Maurizio Rafanelli ,John C. Klensin ,Per Svensson

1st Edition

354050575X, 978-3540505754

More Books

Students also viewed these Databases questions

Question

What potential obstacles stand in my way?

Answered: 1 week ago

Question

Azure Analytics is a suite made up of which three tools?

Answered: 1 week ago