162k views
0 votes
21. Dice Game 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: • Generate a random integer in the range of 1 through 6. This is the value of the computer’s die. • Generate another random integer in the range of 1 through 6. This is the value of the user’s die. • 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.

1 Answer

4 votes

Answer:

See Explanation Below

Step-by-step explanation:

// Program is written in C++ programming language

//.. Comments are used for explanatory purposes

// Program starts here

#include<iostream>

#include <stdlib.h>

#include <time.h>

using namespace std;

int main()

{

int computerWins = 0, computerPlay = 0;

int userWins = 0, userPlay = 0;

int tiedGames = 0;

// Computer Play

for (int play = 0; play< 10; play++) {

computerPlay = rolls();

userPlay = rolls();

// Check who wins

//Clear Screen

System("CLS")

if (computerPlay == userPlay) {

tiedGames++;

cout<<"Ties........" + tiedGames; }

else {

if (computerPlay> userPlay) {

computerWins++;

cout<<"Computer...."<< computerWins;

} else {

userWins++;

cout<<"User........"<< userWins;

}

}

}

return 0;

}

int rolls() {

srand((unsigned)time(0));

return rand() % 6 + 1;

}

User Florian Mielke
by
5.8k points