Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

USING JAVA Task : Try different values of a, b, and m to get your random number generator method to produce at least 6 values.

USING JAVA Task: Try different values of a, b, and m to get your random number generator method to produce at least 6 values. Hint: think about how the mod operation works; larger values of m may be to your benefit. When you have accomplished this task, your test will pass.

public class Main { public static int random(int n) { int Rn = 0; int n1, n2; final int a=5, b=7, m=12; for (int i=0; i

public static void main(String [] args) { System.out.println("The 10th random number is " + random(10)); } }

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

Database Processing

Authors: David J. Auer David M. Kroenke

13th Edition

B01366W6DS, 978-0133058352

More Books

Students also viewed these Databases questions