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

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

RBE104TC代做、C/C++設(shè)計編程代寫
RBE104TC代做、C/C++設(shè)計編程代寫

時間:2024-10-31  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



RBE104TC C/C++ Programming Language
Assignment 2
Contribution to the Overall Marks 70%
Issue Date
Submission Deadline 3rd November 2024
Assignment Overview: 
This assignment is geared towards assessing fundamental coding concepts in C/C++ and 
initiating the process of code development using the software development process (SDP) 
discussed in relevant lectures.
In composing the SDP report [in English], we request you to fulfil the following criteria:
• Design: Clearly explain your understanding of the given problem and specify a sequence of 
steps necessary to accomplish the task (illustrated through flowcharts).
• Coding Progress: Attach 3-5 screenshots that show the code and running results as evidence, 
particularly highlighting any errors or situations you believe are valuable to document. The 
corresponding 3-5 versions of the C code should also be saved. All files must clearly 
demonstrate the progression of your programming task from the initial stage to the final version.
(Multiple versions of C code are only required for the individual project)
• Analysis: Describe the files submitted in the Coding Progress section. Discuss the expected 
results, any encountered or unexpected errors, and your solutions to those issues.
• Implementation: The C code must be submitted in a separate file. Please specify the file 
name and provide instructions for user operation.
• Testing: Describe how you tested and validated your code for required functionalities, as 
well as its robustness.
Exercise 1 (30%):
Design a new class to represent a fraction (a combination
of two integer values). The data members of the class
Fraction are two integers, top and down, denoting the 
numerator and denominator, respectively.
Part 1: Fundamental requirements for the class Fraction.
1. Fractional numbers can be declared with both a numerator and denominator, or simple 
numerator:
2. Fractions should be able to act just like other numbers.
Add, subtract, multiply, and divide;
Compare based on values;
Input and output.
Part 2: Advanced requirements 
3. Fractional number is normalized to ensure that only the numerator can be negative and 
the value is in the least common denominator form:
• 2/-3 would be converted into -2/3 automatically;
• 15/21 would be converted into 5/7 automatically.
4. Write methods to convert between decimals and fractions.
Exercise 2 (35%):
You're now a baseball game point recorder. 
Given a list of strings, each string can be one of the 4 following types: 
• Integer (one round's score): Directly represents the number of points you get in this 
round. 
• "+" (one round's score): Represents that the points you get in this round are the sum of 
the last two valid round's points. 
• "D" (one round's score): Represents that the points you get in this round are the doubled 
data of the last valid round's points. 
• "C" (an operation, which isn't a round's score): Represents the last valid round's points 
you get were invalid and should be removed. 
Each round's operation is permanent and could have an impact on the round before and the 
round after. 
You need to return the sum of the points you could get in all the rounds. 
Note: 
• The size of the input list will be between 1 and 1000. 
• Every integer represented in the list will be between -30000 and 30000. 
Example: 
• Input: ["5","2","C","D","+"] Output: 30 Explanation: 
• Round 1: You could get 5 points. The sum is: 5. 
• Round 2: You could get 2 points. The sum is: 7. 
• Operation 1: The round 2's data was invalid. The sum is: 5. 
• Round 3: You could get 10 points (the round 2's data has been removed). The sum is: 15. 
• Round 4: You could get 5 + 10 = 15 points. The sum is: 30.
Exercise 3 (35%):
This is a Group Project!!!
You are asked to program a game called Monopoly in C++. This game is played by two players (you 
and computer in this assignment). The game and its rules are described as the follows. 
• Account Setup:
Each player must establish an account with a positive balance, starting with a deposit of 5000 units.
This means that you have to set up a data base (a file) which records the players’ information, for 
example, name, gender and account balance etc. and the program is supposed to be able to track the 
balance changes as the game is going. 
• Game Board:
This game is played on a game board as shown in Fig. 1, consisting of 38 squares. Each square, 
except for the four corner squares (the "GO" square, two "CASSINO" squares, and the "JAIL" 
square), has a price tag for ownership, with prices randomly generated within the range of 10 to 300.
All players begin at the "GO" square, and each time a player passes the "GO" square, their account 
balance is increased by 200 units.
• Gameplay Mechanics:
You and the computer take turns to roll a dice. The outcome of each rolling (a random number within 
the range of 1 to 6) decides how many squares you/computer can advance in a clockwise direction 
on the board. After you have landed on a square: 
- if this square is unoccupied (so this means each square except “GO” and “JAIL” has an 
ownership attribute): you can decide whether or not you should buy it; 
- if this square is occupied by you (you’ve already bought it), then nothing needs to be done; 
- if this square is occupied by your opponent and the adjacent squares are unoccupied or 
occupied by you: you will be fined by 10% of the square price; 
- if this square and one of its adjacent squares are both occupied by your opponent (which 
means you opponent has purchased 2 consecutives squares): you will be fined by 20% of the 
square price; 
- The fine is topped at 20% of the square price even if more than 2 consecutive squares have 
been occupied by your opponent.
• Special Squares:
Landing on the "JAIL" square requires the player to wait for one round before moving again;
Landing on a "CASSINO" square prompts the player to decide whether to gamble. If the player 
declines, nothing happens. If the player accepts, they must place a bet, and the casino rolls a dice. 
The player must predict if the outcome will be greater than 3 or not. A correct prediction results in 
a reward of twice the bet, while an incorrect prediction results in the loss of the bet;
• Game End Conditions:
The game ends under three scenarios:
- A player declares bankruptcy (balance is less than or equal to 0);
- A player's account balance exceeds 15,000 units;
- The player chooses to quit the game.
Fig. 1 Game Board
Hint:
1. The computer's logic can be straightforward. For example, it could continuously purchase 
squares until it runs out of funds. Additionally, when landing on a "CASSINO" square, the 
computer could gamble a fixed amount, such as 100 points, each time. Alternatively, the 
computer 's actions could be determined by pre-defined probabilities to introduce variability in 
its behavior.
2. Employ the concept of Object-Oriented Design (OOD) to structure your game development. 
This involves utilizing distinct classes to encapsulate various aspects of the game. For instance, 
a Player class to manage player attributes and behaviors; a Map class to represent the game 
board and its properties, etc.
What should be submitted? 
• You should submit the followings two: 
1. A concise report (with text spanning a few pages) accompanied by C source codes. This 
report should delve into the specifics for each question: 
- Detail SDP steps 1 to 3 within the report (Design + Coding Progress + Analysis), 
accounting for 30% of the evaluation. 
- Encompass SDP step 4 (Implementation + Robustness) with your source code. Your code 
should correspond with the final screenshot provided in the Coding Progress section and 
include appropriate comments. Implementation contributes 35% while Robustness adds 
5%. 
- Elaborate on SDP step 5 (Testing), elucidating how you validated the correctness, 
robustness, and thoroughness of your codes. Employ screenshots and ample explanations 
as verification, encompassing 20% of the evaluation. 
- The overall quality of the report accounts for 10% of the evaluation.
2. All C/C++ source code files, including files from different stages corresponding to the 
screenshots.
• For a comprehensive grading scheme, please consult the Marking Guidelines available on
the Learning Mall system.
• The report must be saved in PDF format. Place the report in the same folder with source code 
files and compress the folder into a single zipped file. Your final submission should include:
- Zipped file containing:
- The report
- The source codes
• The naming convention for the submitted Report and source code files should adhere to the 
subsequent format: 
- StudentID_LastName_FirstName_AssignmentID.pdf 
- StudentID_AssignmentNumber_ExerciseID_SSScreenShotNumber.c/cpp 
- StudentID_LastName_FirstName_AssignmentID.zip 
What should be submitted for Group Projects?
1. A concise report, similar to the individual project report, to demonstrate their individual 
work to the group project.
2. Since different group members may be responsible for different code components, it is not 
required to submit multiple versions of the code. However, all code components, including ‘.c’, 
‘.cpp’, ‘.h’, or ‘.hpp’ files created by the entire group, should be placed in a single folder for 
submission. The folder should be named as follows:
- StudentID_AssignmentNumber_ExerciseID
3. An introduction file, saved in PDF format, that explains how to compile the submitted 
source code. This guide will be used to compile your source code for testing, and the testing 
results will be used to assess the 'Implementation & Robustness' of the group project.
4. A contribution statement signed by all group members. The format for this statement can 
be found in the Marking Guidelines. It looks like:
As an illustration: 
The report and C source files for individual projects, along with the folder for group projects, 
should be placed together in the same directory as follows:
This directory should then be compressed into a final zipped submission file, named as follows:
• 1234567_Albert_Einstein_2.zip
How the work should be submitted? 
Submission should take place electronically through the Learning Mall system, enabling us to 
execute your software during the assessment. Additionally, feedback will be provided via the 
same Learning Mall system.

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

掃一掃在手機打開當(dāng)前頁
  • 上一篇:COMP 3811 代寫、代做 java /c++編程
  • 下一篇:代寫G6077程序、代做Python編程設(shè)計
  • 無相關(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代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團(tuán)助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團(tuán)隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(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號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久久精品2019中文字幕神马| 欧美激情第一页在线观看| 国产精品久久..4399| 中文字幕乱码一区二区三区| 日韩区国产区| 国产女人水真多18毛片18精品| 国产精品96久久久久久| 国产成人免费91av在线| 国产精品老女人视频| 无码中文字幕色专区| 国产深夜男女无套内射| 丝袜一区二区三区| 亚洲国产欧美一区二区三区不卡| 国自在线精品视频| 久激情内射婷内射蜜桃| 国产精品户外野外| 欧美一区二区三区综合| 国产乱子伦精品视频| www.精品av.com| 天堂一区二区三区| 高清视频一区| 欧美成人精品在线播放| 欧美有码在线观看视频| chinese少妇国语对白| 国产精品第三页| 热久久免费视频精品| 久久免费看av| 亚洲精品一区二区三区樱花| 国产一区不卡在线观看| 国产精品久久久久久久久久尿| 午夜精品99久久免费| 成人精品一区二区三区| 久久艹在线视频| 男人的天堂99| 久久精品日产第一区二区三区精品版 | 一本二本三本亚洲码| 黄色免费福利视频| 久久精品福利视频| 青草成人免费视频| 国产成人精品电影久久久 | 国产一区二区三区色淫影院| 国产精品偷伦视频免费观看国产| 日本一区二区三区在线视频| av免费精品一区二区三区| 国产a∨精品一区二区三区不卡| 欧美国产视频一区| 久久久久久久久久码影片| 亚洲一区二区三区加勒比| 国产一区二区自拍| 欧美成人一二三| 国产亚洲欧美一区二区三区| 久久亚洲一区二区三区四区五区高 | 国产一二三四区在线观看| 国产精品免费久久久久影院| 虎白女粉嫩尤物福利视频| 国产精品视频一区二区三区经| 男人天堂手机在线视频| 国产精品免费区二区三区观看| 免费看成人午夜电影| 国产精品狼人色视频一区| 青草成人免费视频| 国产精品视频专区| 国产在线观看精品| 精品自拍视频在线观看| 国产欧美日韩综合精品二区| 一区二区三区在线视频111| 99久久99| 午夜精品久久久久久久无码 | 99视频在线| 日韩国产小视频| 国产激情一区二区三区在线观看| 久久免费看毛片| 欧美尤物巨大精品爽| 久久资源免费视频| 久久久一本精品99久久精品66| 日本精品久久中文字幕佐佐木| 国产精品久久亚洲| 91精品国产乱码久久久久久久久| 欧美日韩一区在线播放| 中文字幕一区二区三区在线乱码| 久久久久久久激情| 国产女主播一区二区三区| 日本高清+成人网在线观看| 精品国产免费一区二区三区| 久久成人免费观看| 国产免费一区二区三区在线观看| 欧美一区二区三区四区夜夜大片| 国产精品久久久久久亚洲调教 | 日本阿v视频在线观看| 久久综合色影院| 色噜噜国产精品视频一区二区 | 毛片一区二区三区四区| 日产日韩在线亚洲欧美| 最新国产精品久久| 久久久国产精品视频| 国产成人精品视| 97国产精品人人爽人人做| 国产一区亚洲二区三区| 欧美在线观看视频| 日本在线观看一区| 亚洲第一综合| 一区二区三区久久网 | 性欧美精品一区二区三区在线播放| 久久99久国产精品黄毛片入口| 国产精品视频自在线| 色黄久久久久久| 九色自拍视频在线观看| 国产精品2018| y111111国产精品久久婷婷| 免费看成人午夜电影| 欧美日韩精品在线一区二区 | 欧美日韩亚洲一区二区三区四区| 日本中文字幕久久看| 午夜探花在线观看| 亚洲一区三区视频在线观看| 美女精品久久久| 久久伊人色综合| 国产精品久久久av| 久久精品成人欧美大片古装| 久久精品magnetxturnbtih| 久久久女人电视剧免费播放下载| 91成人在线视频观看| 91精品视频在线看| 91精品国产高清自在线看超| av一本久道久久波多野结衣| 成人av在线不卡| 成人在线国产精品| 97成人在线免费视频| 91精品国产乱码久久久久久久久| 99国内精品久久久久久久软件| 成人精品视频在线| 97久久精品人人澡人人爽缅北| 91国产视频在线播放| 国产精品 欧美在线| 99久热re在线精品视频| 91精品中文在线| 久久久一二三四| 久久人妻精品白浆国产| 久草综合在线观看| 久久精品人人做人人爽| 国产精品欧美久久| 久久av红桃一区二区小说| 精品国产乱码久久久久久久软件 | 欧美xxxx黑人又粗又长精品| 蜜桃视频成人| 国产美女精品视频免费观看| 99一区二区三区| 91av成人在线| 久久久久久久久久伊人| 国产精品美女在线观看| 一区二区三区四区视频在线| 午夜精品区一区二区三| 欧美综合在线观看视频| 精品视频一区二区三区四区| 成人av中文| 视频直播国产精品| 色综合久久精品亚洲国产| 水蜜桃亚洲一二三四在线| 欧美韩国日本精品一区二区三区| 国产欧美一区二区三区久久 | 91久久久亚洲精品| 久久久久久久久久久国产| 国产精品久久久久久久久久久新郎| 久久97久久97精品免视看| 亚欧洲精品在线视频免费观看| 欧美专区福利在线| 国产日本欧美一区二区三区| 久久久免费在线观看| 国产精品久久久久久久免费大片 | av一区观看| 久青草国产97香蕉在线视频| 欧美激情xxxx性bbbb| 日本www高清视频| 国产区一区二区三区| 国产高清一区视频| 久久成人精品电影| 日本在线观看天堂男亚洲| 国产一区二区在线网站| 国产成人精品久久| 久久久久久com| 欧美精品成人网| 7777精品久久久久久| 国产精品成人在线| 日韩免费视频播放| 国产精品永久在线| 日韩视频免费在线观看| 久久久久久91香蕉国产| 欧美少妇在线观看| 久久久人成影片一区二区三区观看| 国产精品国产一区二区| 日韩免费在线播放| 91精品国产自产在线老师啪 | 久久精品这里热有精品| 午夜欧美不卡精品aaaaa| 国产一区自拍视频| 国产成人拍精品视频午夜网站| 亚洲va码欧洲m码| 国产青草视频在线观看| 国产精品视频免费一区 | 7777免费精品视频|