Answered step by step
Verified Expert Solution
Question
1 Approved Answer
There are 2 dice. Each dice will have values of 1,2,3,4,5,6. Write a JAVA code that will only print the value of each dice when
- There are 2 dice. Each dice will have values of 1,2,3,4,5,6. Write a JAVA code that will only print the value of each dice when both dice add up to the value of 7 or 11
Output:
Dice1 = 1 Dice2 = 6 {total value is 7}
Dice1 = 2 Dice2 = 5 {total value is 7}
Dice1 = 3 Dice2 = 4 {total value is 7}
Dice1 = 4 Dice2 = 3 {total value is 7}
Dice1 = 5 Dice2 = 2 {total value is 7}
Dice1 = 5 Dice2 = 6 {total value is 11}
Dice1 = 6 Dice2 = 5 {total value is 11}
Dice1 = 6 Dice2 = 1 {total value is 7}
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