Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that plays a simple dice game between the computer and the user. When the program runs, a loop should repeat 10 times.

  • Write a program that plays a simple dice game between the computer and the user.
  • When the program runs, a loop should repeat 10 times.
  • Each iteration of the loop should do the following:
    1. Generate a random integer in the range of 1 through 6. This is the value of the computers die.
    2. Generate another random integer in the range of 1 through 6. This is the value of the users die.
    3. The die with the highest value wins. (In case of a tie, there is no winner for that particular roll of the dice.)
    4. 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. It should also display the results of each roll.
  • After the loop performs all of its iterations, the program should display who was the grand winner: the computer or the user.(perform this in java)

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 Fundamentals Design

Authors: Marion Donnie Dutton Don F. Seaman

14th Edition Globel Edition

1292107634, 978-1292107639

More Books

Students also viewed these Databases questions

Question

See Exercise 2.3.2.

Answered: 1 week ago