Java Complete the method body for this getCombination method in the class Lotter
ID: 3751194 • Letter: J
Question
Java
Complete the method body for this getCombination method in the class Lottery. It returns an array of n random numbers less than 100 which might then be used in buying a lottery ticket. public class Lottery public intl] getcombination (int n) /method body //possibly other methods Here is a tester import java.util.Arrays public class LotteryTester public static void main (Stringt] args) Lottery generator -new Lottery int [ numbers-generator.getCombination (5) System.out.println (Arrays.tostring (numbers))Explanation / Answer
import java.util.Random; public class Lottery { public int[] getCombination(int n) { int[] arr = new int[n]; Random random = new Random(); for(int i = 0; iRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.