15. Dice Game Write a program that uses the Die class that was presented in this chapter to play a simple dice game between the computer and the user. The program should create two instances of the Die class (each a 6-sided die). One Die object is the computer's die, and the other Die object is the user's die. The program should have a loop that iterates 10 times. Each time the loop iterates, it should roll both dice. The die with the highest value wins. (In case of a tie, there is no winner for that particular roll of the dice.) As the loop iterates, the program should keep count of the number of times the computer wins, and the number of times that the user wins. After the loop performs all of its iterations, the program should display who was the grand winner, the computer or the user.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter6: Looping
Section: Chapter Questions
Problem 4GZ
icon
Related questions
Question
Could you please help me with this chapter 6 number 15 Programming challenge from Starting out with Java Gaddis 7th edition book. Thank you
15. Dice Game
Write a program that uses the Die class that was presented in this chapter to play a simple
dice game between the computer and the user. The program should create two instances of
the Die class (each a 6-sided die). One Die object is the computer's die, and the other Die
object is the user's die.
The program should have a loop that iterates 10 times. Each time the loop iterates, it should
roll both dice. The die with the highest value wins. (In case of a tie, there is no winner for
that particular roll of the dice.)
As the loop iterates, the program should keep count of the number of times the computer
wins, and the number of times that the user wins. After the loop performs all of its
iterations, the program should display who was the grand winner, the computer or the user.
Transcribed Image Text:15. Dice Game Write a program that uses the Die class that was presented in this chapter to play a simple dice game between the computer and the user. The program should create two instances of the Die class (each a 6-sided die). One Die object is the computer's die, and the other Die object is the user's die. The program should have a loop that iterates 10 times. Each time the loop iterates, it should roll both dice. The die with the highest value wins. (In case of a tie, there is no winner for that particular roll of the dice.) As the loop iterates, the program should keep count of the number of times the computer wins, and the number of times that the user wins. After the loop performs all of its iterations, the program should display who was the grand winner, the computer or the user.
Expert Solution
Step 1

//you haven't mentioned the language, I have done in java, if u need in other languages please //comment

 

public class Die {

//method return values from 1to6

int roll()

{

return (int)(Math.random()*6+1);

}

public static void main(String args[])

{

//part 1

Die comp=new Die();

Die user=new Die();

  

int comp_win=0,user_win=0,tie=0;

int comp_roll=0,user_roll=0;

//part 2

for(int i=0;i<10;i++)

{

comp_roll=comp.roll();

user_roll=user.roll();

if(comp_roll>user_roll)

comp_win++;

else if(comp_roll<user_roll)

user_win++;

else

tie++;

System.out.println("***At iteration"+(i+1));

System.out.println("Computer rolled:"+comp_roll);

System.out.println("User rolled:"+user_roll);

System.out.println("currently Computer score:"+comp_win+" User score"+user_win);

}

if(comp_win>user_win)

{ System.out.println("The Grand winner is Computer.");

System.out.println("Total Computer score:"+comp_win+" User score"+user_win+" no.of ties:"+tie);

}

else if(comp_win<user_win)

{ System.out.println("The Grand winner is User.");

System.out.println("Total Computer score:"+comp_win+" User score"+user_win+" no.of ties:"+tie);

}

else

{ System.out.println("Its overall Tie");

System.out.println("Total Computer score:"+comp_win+" User score"+user_win+" no.of ties:"+tie);

}

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT