日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫COMP1721、代做Java程序語言

時間:2024-05-05  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



COMP1721 Object-Oriented Programming
Coursework 2
1 Introduction
Your task is to implement a simulation of the card game Baccarat—specifically, the simpler ‘punto banco’
variant of the game. To assist you, we have provided three Java classes: Card ,CardCollection and
CardException. These should form the basis of your solution.
Please note: an absolute requirement of this assignment is that you should not alter the definitions of
the Card, CardCollection andCardExceptionclasses in any way.
2 Preparation
1. Start by learning the rules of the game! Consult the Wikipedia page on Baccarat, which has a very
good summary. Note that you only need to read the sections headed ‘Punto banco’ and ‘Tableau
of drawing rules’.
2. Download the Zip archivecwk2files.zip from Minerva.
3. Unzip the Zip archive. You can do this from the command line in Linux, macOS and WSL 2 with
unzip cwk2files.zip. This will give you a subdirectory named cwk2, containing all the files you
need. Then remove the Zip archive, to ensure that you don’t accidentally submit it as your
solution!
4. Study the files in cwk2. In particular, examine the file README.md, as this provides guidance on how
to run the tests on which your mark will be partly based.
3 Basic Solution
For the basic solution, you must implement these classes:
• BaccaratCard, to represent a single playing card in Baccarat
• BaccaratHand, to represent a hand of cards in Baccarat
• Shoe, to represent the ‘shoe’ from which cards are dealt in Baccarat
You will also need to implement a small program in Baccarat.java that uses the classes.
The files for all of these classes can be found in src/main/java. Your solution MUST be implemented
in these files, in this specific location!
Figure 1 shows the relationships that should exist between the three main classes, and the methods they must
support. Relationships with the other provided classes are not shown.
Before writing any code, think carefully about the best way to reuse the Card and CardCollection
classes that we have provided to you.
Figure 1: Classes needed for Baccarat simulation.
As in Coursework 1, we have provided tests that will help you check whether you have implemented the
classes correctly. Some of the code needed to pass the tests is in the classes we have provided, but you will
1
need to also write stubs for some of the methods in Figure 1 in order for the tests to compile and run—see
the instructions for Coursework 1 if you need a reminder of how to do this.
As in Coursework 1, the tests are run using Gradle:
./gradlew test
Omit the ./ prefix if running in a Windows command shell, or use .\gradlew.bat to invoke Gradle
if running in Windows Powershell. If using IntelliJ, you should also be able to run the tests and other
coursework-related tasks via that IDE’s Gradle tool window.
The following sections provide further details of the requirements for each of the three classes.
3.1 BaccaratCard
These are the minimum requirements for the tests to pass.
• It should be possible to create a BaccaratCard object by specifying a rank and a suit, where the rank
is an instance of the enum Card.Rank and the suit is an instance of the enum Card.Suit .
• It should be possible to query rank and suit via the getRank() and getSuit() methods.
• Calling toString() on a BaccaratCard object should return a two-character string in which the first
character is the rank (A, 2, 3. . .9, T, J ,Q, K) and the second character is the Unicode symbol for the
card’s suit:♣ (\u2663), q (\u2666), r ( \u2665), or ♠ (\u2660).
• It should be possible to compare BaccaratCard objects in two ways, using the equals() and
compareTo() methods. These methods should have the expected behaviour for Java classes, as
discussed in the lectures. They should use rank and suit to perform their comparisons.
• The value() method of BaccaratCard should return the points value of the card in the game of
Baccarat. (See the Wikipedia article for details of scoring.)
Remember that we have provided a Card class to help you with implementation. Some of the requirements above are satisfied by code in that class. Think about the best way of reusing this code.
3.2 BaccaratHand
These are the minimum requirements for the tests to pass.
• A BaccaratHand should be able to store BaccaratCard objects, but it should start out as empty.
• It should be possible to add a BaccaratCardobject to a BaccaratHand by calling the add() method.
• Calling size() on a BaccaratHand should return the number of cards in the hand.
• Calling toString() on a BaccaratHand should return a string containing two-character representations of each card, separated from each other by a space. For example, a hand containing the Ace of
Clubs, Four of Diamonds and Jack of Spades should yield “A♣4q J♠”.
• The value() method of BaccaratHand should return the points value of a hand in the game of
Baccarat. (See the Wikipedia article for details of scoring.)
• The isNatural() method of BaccaratHand should return true if the hand has two cards and a points
value of 8 or 9, false otherwise.
Remember that we have provided a CardCollection class to help you with implementation. Some of
the requirements listed above are satisfied by code in that class. Think about the best way of reusing
this code.
3.3 Shoe
These are the minimum requirements for the tests to pass.
• Shoe must have a constructor in which the number of decks of cards is specified as a parameter. This
can have values of 6 or 8; any other value should result in a CardException being thrown.
• The constructor of Shoe should ensure that a shoe stores the specified number of complete decks of
BaccaratCard objects. A deck of cards is the full set of 52 cards, ordered first by suit and then by
rank. The constructor should not reorder the cards in any way.
2
• Calling size() on a Shoe should return the number of cards in the shoe.
• The shuffle() method of Shoe should reorder the cards in the shoe randomly. Java’s Collections
utility class, from the java.util package, will help you implement this easily. See the documentation
of this class for more details.
• The deal() method of Shoe should remove the first stored card and return it to the caller. Attempting
to deal from an empty shoe should trigger a CardException.
Remember that we have provided aCardCollection class to help you with implementation. Some of
the requirements above are satisfied by code in that class. Think about the best way of reusing this
code.
3.4 Main Program
The final part of the Basic solution is to implement a small program in Baccarat.java that uses the three
classes discussed earlier. This program should
• Create a shoe containing 6 full decks of cards, and shuffle it
• Create hands for the banker and a single player
• Deal a card to player then banker, then repeat this so each hand has two cards
• Display the contents and value of each hand
• Inform the user if the player or banker has a Natural
You can run the program via Gradle, with
./gradlew run
Figure 2 gives an example of the output that the program should generate.
Figure 2: Sample output for the Basic solution.
4 Full Solution
For the Full solution, replace the program in Baccarat.java with a more complete simulation of the game.
Your simulation should follow a simplified version of the ‘punto banco’ rules outlined in the Wikipedia
article. In this version, there is no betting and you should not ‘burn’ any cards from the shoe.
In this more complete simulation, the program will need to play multiple rounds, indicating the result
(Banker win, Player win or Tie) after each round. See the subsections below for further details.
Note: marks for the Full solution will be awarded based on how much of the required behaviour you
are able to implement correctly, and also on how well designed your solution is. A fully object-oriented
implementation in which different aspects of the task are broken out into separate methods will score more
marks than an unstructured implementation where everything is contained within the main method.
4.1 Interactive Mode
If the Baccarat program is run with a single command line argument whose value is either "-i" or
"--interactive" , then it should operate in interactive mode. In this mode, the program should continue
playing the game provided that there are at least six cards remaining in the shoe and the user has indicated
a wish to continue. The program should check this with the user at the end of each round. If the user’s
response does not begin with either 'y' or 'Y' then the game should end.
At the end of the game, the program should display counts of the number of rounds played, the number of
player wins, the number of banker wins and the number of tied rounds. After displaying this information,
the program should terminate.
3
A sample of the expected program output can be seen in Figure 3.Here, the user indicated that they wanted
to finished after playing ten rounds.
Figure 3: Sample output for Full solution (interactive mode).
To test interactive mode using Gradle, do
./gradlew interact
4.2 Non-Interactive Mode
If theBaccarat program is run without command line arguments, it should operate without user interaction,
playing rounds of the game repeatedly until there are fewer than 6 cards remaining in the shoe. At this point,
the program should display the same ‘end of game’ statistics as it does in interactive mode. The program
should then terminate.
Non-interactive mode should be the behaviour seen when running the program with
./gradlew run
5 Submission
Use Gradle to generate a Zip archive containing all the files that need to be submitted:
./gradlew submission
This produces a Zip archive named cwk2.zip. Submit this file to Minerva, via the appropriate link in the
‘Submit My Work’ folder.
The deadline for submissions is 2 pm on 2 May 2024. The standard university penalty of 5% of available
marks per day will apply to late work, unless an extension has been arranged due to genuine extenuating
circumstances.
Note that all submissions will be subject to automated plagiarism checking.
4
6 Marking
20 Tests for main classes (BaccaratCard ,BaccaratHand ,Shoe )
10 Code structure and style for main classes
5 Basic Baccarat program functionality, if Full solution not attempted
15 Full Baccarat program functionality (replaces Basic)
10 Full Baccarat program structure and style
60
Note: there are either 5 marks or 15 marks available for correct functioning of the program that uses the
classes, depending on whether you’ve attempted the Basic solution or the Full solution.You are also assessed
on program structure and style if you attempt the Full solution, but not if you attempt the Basic solution (as
the amount of code required in this case is very small).
Thus the maximum mark that can be achieved for the Basic solution is 36.You can achieve up to 60 marks
if you attempt the Full solution.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:赴菲律賓旅游簽證續簽代辦 旅游簽續簽材料
  • 下一篇:代做FINM8007、Java/Python程序設計代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
  • 短信驗證碼 豆包 幣安下載 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        亚洲国产欧美日韩另类综合| 欧美日韩视频一区二区| 日韩一区二区电影网| 欧美日韩国产精品自在自线| 亚洲福利视频三区| 欧美精品18| 亚洲视频 欧洲视频| 欧美日韩在线一区二区| 午夜精品一区二区三区在线播放| 国产精品99久久不卡二区| 激情欧美一区二区三区在线观看| 国产精品久99| 午夜精品久久久久久久99水蜜桃| 亚洲精品韩国| 久久免费视频在线观看| 国内精品久久久久影院优| 免费观看成人www动漫视频| 亚洲激情午夜| 欧美人与性禽动交情品| 午夜欧美大尺度福利影院在线看| 欧美日韩一区二区三区四区五区| 麻豆精品国产91久久久久久| 久久狠狠久久综合桃花| 久久精品视频在线| 国产精品综合| 免费一级欧美片在线播放| 国内精品免费午夜毛片| 亚洲小说春色综合另类电影| 久久夜色精品国产亚洲aⅴ| 国内在线观看一区二区三区| 国产精品一卡二| 亚洲欧美激情四射在线日| 国产亚洲一区在线| 国产精品毛片大码女人| 99国内精品久久| 久久综合影视| 国产欧美日韩一区二区三区| 亚洲成色999久久网站| 久久久久女教师免费一区| 欧美国产视频一区二区| 久久婷婷蜜乳一本欲蜜臀| 国产午夜精品麻豆| 国产自产精品| 欧美激情欧美激情在线五月| 久久久久国产精品一区二区| 国产精品少妇自拍| 欧美在线播放一区| 亚洲精选久久| 久久不射电影网| 国产亚洲精品bt天堂精选| 激情文学综合丁香| 亚洲精品免费电影| 久久gogo国模裸体人体| 韩日精品中文字幕| 国产精品护士白丝一区av| 亚洲日本成人网| 国产精品久久国产愉拍| 一区二区三区你懂的| 亚洲伦理中文字幕| 在线日韩电影| 亚洲宅男天堂在线观看无病毒| 国产欧美一区二区色老头| 国产亚洲精品aa| 亚洲午夜精品福利| 欧美一区2区三区4区公司二百| 国产精品高潮视频| 亚洲影院污污.| 亚洲国产高潮在线观看| 欧美无乱码久久久免费午夜一区| 欧美激情一区二区三区四区| 免费成人高清视频| 欧美成人第一页| 欧美精品在线视频| 国内精品久久久久久| 国产精品v欧美精品v日本精品动漫| 亚洲第一在线综合网站| 欧美精品1区2区3区| 久久久久久九九九九| 久久精品91| 久久成人av少妇免费| 亚欧美中日韩视频| 欧美香蕉大胸在线视频观看| 在线欧美视频| 欧美激情偷拍| 国产精品日韩久久久| 亚洲无吗在线| 国产精品九九| 免费观看日韩| 99综合视频| 国产欧美日韩综合精品二区| 日韩视频免费观看高清完整版| 欧美在线视频a| 亚洲一区免费视频| 欧美美女bbbb| 久久中文欧美| 一区二区三区日韩| 国产精品日日做人人爱| 欧美激情影院| 欧美视频在线播放| 欧美在线看片a免费观看| 欧美日韩在线看| 在线播放不卡| 狠狠久久亚洲欧美| 欧美成人精品h版在线观看| 欧美一区二区三区久久精品茉莉花| 欧美日韩在线一区二区| 亚洲欧美视频在线观看| 日韩一区二区免费高清| 这里只有视频精品| 欧美日韩一区综合| 亚洲精品久久久久| 免费高清在线视频一区·| 国产日韩亚洲欧美| 日韩一区二区精品在线观看| 欧美日韩另类综合| 欧美一区二区在线观看| 国产精品影视天天线| 欧美理论电影网| 狠狠入ady亚洲精品| 在线观看91精品国产入口| 欧美日韩色婷婷| 国产精品乱码一区二三区小蝌蚪| 久久久福利视频| 久久久亚洲人| 欧美一区二粉嫩精品国产一线天| 国产亚洲美州欧州综合国| 亚洲大胆人体视频| 欧美在线观看视频一区二区| 亚洲国产黄色片| 欧美三级中文字幕在线观看| 影音先锋国产精品| 亚洲精品一区二区三区av| av成人免费在线| 国产精品久久久久久久久搜平片| 久久爱www| 欧美日本精品一区二区三区| 亚洲高清在线| 亚洲一区中文字幕在线观看| 国产精品久久久久久久久婷婷| 欧美涩涩视频| 国产精品久久久久久久久久尿| 午夜精品久久久久久久白皮肤| 一道本一区二区| 欧美激情a∨在线视频播放| 久久亚洲捆绑美女| 性久久久久久久| 国产精品免费一区豆花| 一区二区三区国产| 在线观看欧美亚洲| 日韩一本二本av| 亚洲国产精品va在线看黑人动漫| 一本色道综合亚洲| 亚洲视频电影图片偷拍一区| 欧美大片免费看| 久久国产福利国产秒拍| 久久国产精品99精品国产| 久久日韩粉嫩一区二区三区| 99国产精品私拍| 国产麻豆精品久久一二三| av不卡在线看| 欧美成人精品一区二区| 亚洲电影免费观看高清| 国产精品三级视频| 国内精品久久久久久影视8|