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;
}