Ask Computer Engineering Expert

In the game of War, two players battle each other to see who can win the most cards. At the start of a single game a deck of 52 cards (legal values 2-10,J,Q,K,A) is split evenly between the two players such that each player holds a stack of 26 random cards. For each battle of the game both players turn over the card at the top of their stack. The player with the higher-valued card takes both cards and places them on the bottom of their stack. If the two cards played are of equal value, each player lays down three face-down cards and a fourth card face-up (a "war"), and the higher-valued card wins all of the cards on the table, which are then added to the bottom of the player's stack. In the case of another tie, the war process is repeated until there is no tie.

A player wins by collecting all the cards. If a player runs out of cards while dealing the face-down cards of a war, he may play the last card in his deck as his face-up card and still have a chance to stay in the game. Once a single player holds all 52 cards, the game ends.

You are to write a program that takes the number of games, n, to play as a command line parameter (get passed in the String[] args parameter to main, not from standard input) and then simulates the n games. At the conclusion of all the games your program will calculate and output the following statistics:

Average number of battles per game

Average number of wars per game

Average number of double wars per game

Max number of battles in a game

Min number of battles in a game

Max number of wars in a game

Min number of wars in a game

Designing a Solution

As you can probably tell, this assignment is fairly involved. In fact, the only way you can pull it off is if you are smart about the abstractions you use and how you break your program into separate classes. It is recommended that you design the following classes in implementing your solution:

Card: A card consists of a value (low to highest: 2-10,J,Q,K,A) and a suit (hearts, spaces, clubs, diamonds). Provide appropriate constructors as well as accessor methods.

Deck: A new deck consists of all 52 cards in a array. It contains a method, deal, that removes a random card from the array and returns that card. (This can be achieved by generating a random number between 0 (inclusive) and the length of the array (exclusive) and removing/returning the card at that array position.

Player: A player consists of a number (1 or 2) and an array of owned cards. At the start of the game each player holds 26 unique cards. A method, flip, removes and returns the card at the front of the array. A method, collect, takes a card as a parameter and adds it to the array of owned cards. The player class should contain the appropriate constructors and other helper methods as required. For example, ahasWon method would return true if a player owned all 52 cards, and false otherwise, and a method, war, might handle the logic for breaking ties.

Game: A game consists of two players, as well as other instance variables for keeping track of the statistics for each game. A method, play, carries out the rules of the game of war until one of the players has won. This class should have a default constructor and accessor methods, as well as well as any other methods you feel are appropriate.

Simulation: This class contains a constructor that takes the number of games to simulate as well as a function, simulate, that plays the specified number of games. A method, calculate, computes the aggregate statistics from all games, which will require you to define the appropriate class member variables to keep track of the results of each game. Another method, report, prints the required statistics to the screen in a nicely-formatted manner. The main method for running your War program is contained in this class.

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M9886108

Have any Question?


Related Questions in Computer Engineering

Does bmw have a guided missile corporate culture and

Does BMW have a guided missile corporate culture, and incubator corporate culture, a family corporate culture, or an Eiffel tower corporate culture?

Rebecca borrows 10000 at 18 compounded annually she pays

Rebecca borrows $10,000 at 18% compounded annually. She pays off the loan over a 5-year period with annual payments, starting at year 1. Each successive payment is $700 greater than the previous payment. (a) How much was ...

Jeff decides to start saving some money from this upcoming

Jeff decides to start saving some money from this upcoming month onwards. He decides to save only $500 at first, but each month he will increase the amount invested by $100. He will do it for 60 months (including the fir ...

Suppose you make 30 annual investments in a fund that pays

Suppose you make 30 annual investments in a fund that pays 6% compounded annually. If your first deposit is $7,500 and each successive deposit is 6% greater than the preceding deposit, how much will be in the fund immedi ...

Question -under what circumstances is it ethical if ever to

Question :- Under what circumstances is it ethical, if ever, to use consumer information in marketing research? Explain why you consider it ethical or unethical.

What are the differences between four types of economics

What are the differences between four types of economics evaluations and their differences with other two (budget impact analysis (BIA) and cost of illness (COI) studies)?

What type of economic system does norway have explain some

What type of economic system does Norway have? Explain some of the benefits of this system to the country and some of the drawbacks,

Among the who imf and wto which of these governmental

Among the WHO, IMF, and WTO, which of these governmental institutions do you feel has most profoundly shaped healthcare outcomes in low-income countries and why? Please support your reasons with examples and research/doc ...

A real estate developer will build two different types of

A real estate developer will build two different types of apartments in a residential area: one- bedroom apartments and two-bedroom apartments. In addition, the developer will build either a swimming pool or a tennis cou ...

Question what some of the reasons that evolutionary models

Question : What some of the reasons that evolutionary models are considered by many to be the best approach to software development. The response must be typed, single spaced, must be in times new roman font (size 12) an ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As