Type two statements using nextInt() to print two random integers between 0 and 9. End with a newline. Ex: Note: For this activity, using one statement may yield different output (due to the compiler calling nextInt() in a different order). Use two statements for this activity. Here is the code to be modified: import java.util.Scanner; import java.util.Random; public class DiceRoll { public static void main (String [] args) { Random randGen = new Random(); int seedVal = 0; randGen.setSeed(seedVal); /* Your solution goes here */ return; } } How do I solve this?
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |