国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

COMP1721代寫、代做java編程語言

時(shí)間:2024-05-02  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



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

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:CS 412代做、代寫Python設(shè)計(jì)程序
  • 下一篇:F27SB代寫、c++,Java程序代做
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产一区自拍视频| 日韩久久不卡| 又粗又黑又大的吊av| 日韩在线观看a| 国产中文一区二区| 久久精品国产精品青草色艺| 国产精品大全| 日本中文字幕久久看| 欧美一区三区二区在线观看| 国产精品一区二区av| 久久精品视频99| 日韩中文字幕在线不卡| 国产区欧美区日韩区| 九色综合日本| 久久亚洲综合国产精品99麻豆精品福利| 午夜精品短视频| 国产欧美日韩中文字幕在线| 久久久久久久久国产精品| 一区二区不卡在线视频 午夜欧美不卡'| 欧美在线观看网址综合| 91国语精品自产拍在线观看性色| 久久综合九色九九| 欧洲成人一区二区| 97人人澡人人爽| 国产精品久久久久不卡| 日本10禁啪啪无遮挡免费一区二区| 波多野结衣久草一区| 国产精品成人av在线| 手机在线观看国产精品| www.av蜜桃| 美女999久久久精品视频| 欧美日韩精品免费在线观看视频| 99在线高清视频在线播放| 国产精品国产三级国产专区51 | 日韩av一二三四区| 97人人模人人爽视频一区二区| 久久久福利视频| 欧美日韩国产二区| 精品一区二区三区日本| 日韩在线不卡视频| 日韩精品一区在线视频| 久久精品国产综合精品| 视频一区国产精品| 成人免费视频a| 色与欲影视天天看综合网| 裸模一区二区三区免费| 国产精品久久久久久久乖乖| 欧美日韩二三区| 精品国产一区二区三区四区在线观看 | 欧美人与性动交a欧美精品| 欧美黄色直播| 国产精品我不卡| 黄色av网址在线播放| 国产精品人成电影在线观看| 精品欧美一区二区三区久久久| 国产精品视频精品视频| 今天免费高清在线观看国语| 国产精品免费一区| 激情欧美一区二区三区中文字幕| 久久精品视频中文字幕| 黄色一级大片在线观看| 国产精品天天av精麻传媒| 欧美 日韩 国产在线观看| 久久国产精品 国产精品 | 久久久福利视频| 色哺乳xxxxhd奶水米仓惠香| 日韩视频在线免费观看| 韩国精品一区二区三区六区色诱| 国产精品久久国产精品99gif| 国内精品久久久久久久果冻传媒| 久久五月情影视| 99精品在线直播| 日本午夜精品一区二区三区| 日韩在线播放av| 欧美性资源免费| 国产精品黄视频| 精品一区二区三区视频日产| 亚洲最新免费视频| 久久久免费av| 国产一区二区自拍| 亚洲三区视频| 日韩中文第一页| 国产主播精品在线| 中文字幕无码精品亚洲35| 久久久性生活视频| 欧美性视频精品| 九九热精品视频在线播放| 国产免费黄色小视频| 日韩一级片播放| 久久国产精品久久精品国产| 国产自产精品| 日韩一级片免费视频| 久久最新资源网| 国产精品一区专区欧美日韩| 青青草视频在线视频| 在线精品日韩| 久久精品中文字幕| 99在线视频播放| 日韩精品电影网站| 中文字幕无码精品亚洲35 | 精品九九九九| 久久黄色片视频| 蜜桃视频成人| 性色av香蕉一区二区| 精品国偷自产一区二区三区| 久久国产精品视频在线观看| 免费在线a视频| 亚洲中文字幕无码专区| 欧美视频在线播放一区| 水蜜桃亚洲精品| 亚洲最大成人网色| 久久亚洲精品成人| 久久久久资源| 久久av一区二区三区漫画| 97人人爽人人喊人人模波多| 国产嫩草一区二区三区在线观看| 免费无遮挡无码永久视频| 日本不卡在线观看| 日本一区视频在线观看免费| 亚洲精品在线免费| 欧美激情视频在线免费观看 欧美视频免费一| 北条麻妃久久精品| 久久国产精品一区二区三区| 久久精品午夜福利| 91久久国产自产拍夜夜嗨| 国产欧美在线一区| 国产四区在线观看| 国产做受69高潮| 国产日韩欧美在线| 国产欧美日韩小视频| 国产伦理一区二区三区| 国产精品中文字幕久久久| 国产一区二区三区小说| 国产一级不卡毛片| 国模精品娜娜一二三区| 国产一区二区在线网站| 国产日韩在线看片| 国产欧美日韩一区| 成人国产精品一区| 99国精产品一二二线| 国产精品18久久久久久首页狼 | 国内精品伊人久久| 免费av网址在线| 精品少妇人妻av一区二区| 黄色一级片在线看| 国产综合18久久久久久| 国产伦一区二区三区色一情| 国产精品一区二区欧美黑人喷潮水| 国产人妻互换一区二区| 99在线精品免费视频| 久久久人成影片一区二区三区 | 精品国产成人av在线免| 一区二区三区四区不卡| 又大又硬又爽免费视频| 一本色道久久99精品综合 | 91久久精品美女| 国产高清在线一区| 精品国产一区久久久| 国产精品丝袜久久久久久消防器材| 国产精品成熟老女人| 一区二区三区一级片| 日本一道本久久| 欧美精品国产精品久久久| 国产免费xxx| 国产精彩免费视频| 国产精品日韩欧美| 一区一区视频| 天堂av一区二区| 欧美 日韩 国产在线观看| 分分操这里只有精品| 2019日本中文字幕| 国产精品视频一区二区三区四区五区 | 欧美精品一区二区三区在线看午夜| 国内外免费激情视频| 国产精品一区二区三区免费观看 | 国产精品专区在线| 久久这里精品国产99丫e6| 久久久国产视频91| 亚洲一区二区久久久久久| 欧美尤物巨大精品爽| 成人h在线播放| 久艹视频在线免费观看| 欧美日韩国产成人| 青青青免费在线| www黄色日本| 国产精品啪视频| 色综合五月天导航| 青青草国产精品一区二区| 国产精品稀缺呦系列在线| 日韩在线观看免费高清| 亚洲天堂av免费在线观看| 免费在线观看亚洲视频| av动漫在线看| 国产精品夫妻激情| 日本精品www| 成人毛片100部免费看| 国产精品欧美久久久| 少妇高清精品毛片在线视频| 国产日韩视频在线播放| www.国产一区|