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

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

代寫EEEE 2067、代做C++設計編程
代寫EEEE 2067、代做C++設計編程

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



EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
Coursework Autumn 2024/25 
 
“Intelligent Recycling Machine” 
 
This coursework constitutes 40% of your total assessment in this module. 
 
LO Addressed 
• LO1 Demonstrate critical judgment in decomposing large tasks into collections of small 
objects and functions. 
• LO2 Design scalable object-oriented software with an appreciation of a larger 
environment encompassing code recycling, maintenance, expansion and issues of 
robustness. 
 
Main Objective 
Your main objective is to develop a smart recycling machine software according to the given 
requirements below. A typical recycle machine is shown in Figure 1. 
 
 
Figure 1: A Typical Recycle Machine 
 
Tasks or Requirements (What should this machine do?) 
1. On the starting menu: 
a. Menu for User Registration and login. 
b. Menu for Maintenance login. 
 
2. After login: 
a. Display name, phone number and current points. 
b. Display item name and points per kg as shown in Table 1. 
c. Display maximum capacity and current load as shown in Table 2. 
 You can be creative on how to display the menu above. 
 
 EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
3. When the machine is first powered on (when you run the program), it will read a text file 
(item_point.txt), which contains the information listed in Table 1. 
 
 Table 1: Recycle Item Initial Data 
Item Name Points Per Kg 
Paper 10 
Plastic 20 
Glass 12 
Metal 25 
Cardboard 15 
Hazardous Waste 30 
Organic Waste 8 
General Waste 2 
4. The machine will then read another text file (capacity.txt) which contains the info listed in 
Table 2. 
Table 2: Machine Capacity Initial Data 
Item Name Maximum Capacity (kg) Current Load (kg) 
Paper 50 0 
Plastic 50 0 
Cardboard 50 0 
Glass 80 0 
Metal 100 0 
Hazardous Waste 60 0 
Organic Waste 100 0 
General Waste ** 0 
If a particular item has reached its maximum capacity, it will not accept anymore and the 
deposit door will refuse to open. 
5. Point Collection System: The system should provide a menu for user to register or login. For 
the first time, you need to register. It should use your name and phone number. Upon 
successful registration, you can login and the machine will display your name and total point 
collected so far. The system should also provide login for other users. Therefore, a logout 
function is also required. The system should also retain the account info after you program 
restarts. 
 
6. Maintenance mode: Implement a maintenance mode for the machine operator. The 
operator should be able to reset a particular load to zero, or all those items which have 
reached the maximum load, or all loads to zero. It should be able to create a report of all 
past transactions. A menu option for selecting the maintenance mode should be provided in 
the startup menu. 
 EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
Software Design 
 
1. Design at least 4 classes: 
a. RecycleItem class to represent the object to be deposited by the user. 
b. RecycleItemStatus class to represent the status of a recycle item contained in 
the machine. 
c. RecyclingMachine class to represent the recycle machine. 
d. User class to represent the end user or person using the machine. 
 
2. Provide a UML class diagram to illustrate the relationships between these classes. The basic 
members of each class are listed in Table 3, 4, 5 and 6 respectively. Note: Your classes can 
have more variables and functions than what are listed in these tables. 
 
Table 3: Members of RecycleItem class 
No. Variable Description Type 
1 itemName Name of the item to be deposited e.g. paper, 
plastic, glass, etc. 
string 
2 weight Weight of the item to be deposited in kg. int 
No. Function Description Type 
1 Member functions Relevant assessors and mutators functions. Don’t 
forget constructors and destructor. 
function 
 
Table 4: Members of RecycleItemStatus class 
No. Variable Description Type 
1 itemName Name of the item in the machine e.g. paper, 
plastic, glass, etc. 
string 
2 maxCapacity Maximum capacity. int 
3 currentLoad Current load of item in the machine. E.g. how 
many kg of paper in total in the machine. 
int 
4 pointsPerKg Number of points per kg of item deposited. int 
No. Function Description Type 
1 addToCurrentLoad() Function to add load to current item. function 
2 Member functions Relevant assessors and mutators functions. 
Don’t forget constructors and destructor. 
function 
 
Table 5: Members of RecyclingMachine class 
No. Variable Description Type 
1 paperStat, 
glassStat, … 
Machine will contain RecycleItemStatus 
for the recycled items. 
RecycleIte
mStatus 
2 location Location of the machine. E.g. UNNC, Jintianfu, 
Manor, … 
string 
3 usr1, usr2, … Machine will contain User objects to represent 
users who are registered. 
User 
 
 EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
No. Function/Variable Description Type 
1 RecyclingMachine Constructor which initializes the recycling 
machine based on the data provided in Table 1 
and 2 by reading item_point.txt and capacity.txt. 
 function 
2 startupMenu A function that allows the machine to display the 
startup menu as stated in Task1 . 
function 
3 depositMenu A function that allows the machine to display the 
deposit menu as stated in Task2. 
 
3 registerUser A function that allows machine to register user. 
The new user should be added to the file 
account.txt. 
function 
4 userLogin A function that allows user to login into the 
machine. It should match the login with the 
existing account in account.txt. 
function 
5 userLogout A function that allows the user to log out of the 
machine. Upon logout, the system should return 
to the login menu, allowing another user to log 
in. 
function 
6 depositItem A function that allows user to deposit items to the 
machine after login. The user is allowed to 
deposit more than one type of item per time. 
Provide the right condition to handle the case 
when reaching the maximum capacity. The user 
is also allowed to cancel at any point and go back 
to the starting menu. Upon successful deposit 
operation, the function will update the current 
load in capacity.txt and don’t forget to add points 
to the user. 
function 
7 emptyLoad A function in the maintenance mode that allows 
operator to empty a particular type of item or the 
whole machine. Take note of the maximum 
capacity. This menu is only accessible by the 
machine operator. 
function 
8 printTransaction A function in the maintenance mode that allows 
the machine to display the past transactions on 
screen also save the record with the filename 
“Transaction-YYYY-MM-DD.txt”. This menu is 
only accessible by the machine operator. 
function 
9 Member functions Relevant assessors and mutators functions. Don’t 
forget destructor. 
functions 
10 Advanced function(s) Create at least one special function which is not 
stated in the requirements. 
Suggestion: increase the number of locations for 
the recycling machine. Even if the resident’s 
information is linked, if you are not in the 
apartment where the current recycling machine 
is located, they can only dispose of items as a 
 function EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
guest, meaning they are still limited to five 
disposal attempts. You should also demonstrate 
this feature according to demo step in the next 
section. Note: match the “location” variable 
in RecyclingMachine class with 
“residence” variable in User class as follows. 
 
Table 6: Members of User class 
No. Variable Description Type 
1 name The account holder’s name. string 
2 number The account holder phone number. string 
3 points The accumulated reward points of the account 
holder. 
double 
4 residence The residence name of the user e.g. “Block215”. 
If the user is unlinked to this residence, this 
variable should be “None”. 
string 
No. Function Description Type 
1 Member functions Relevant assessors and mutators functions such 
as addPoints, setResidence, etc. Don’t 
forget constructors and destructor. 
functions 
 
 
 
 EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
Demo Step 
Create a video with voice narrative to demonstrate the following tasks: 
Initial conditions: 
• The load of recycle items in the machine should be zero, meaning the machine is empty. 
• No user has been registered. 
Table 7: Task List 
Task list Task Description 
1 Demonstrate initialization of the recycling machine with items listed in item_point.txt. 
Proof that you can change the category’ name, points per kg of an item during the 
demo by changing the item_point.txt. 
2 Startup Menu -> Create an account with your name and phone number. Store the 
account info in account.txt file and read the file every time someone is trying to 
register to make sure the person has not registered. When you login, you need to 
match the account with your phone number. After login, it will go into Deposit Menu 
which displays how many points you already have which is zero when first registered. 
3 Deposit Menu -> select an item to deposit -> enter weight -> machine opens 
compartment door of that item -> user deposit -> success -> display points you have 
earned and also total point accumulated. After 5 seconds, it will go back to the deposit 
menu automatically. 
4 Deposit Menu -> select any item -> cancel -> select another item -> enter weight -> 
machine opens compartment doors of that item -> user deposit -> success -> display 
points you have earned and also total point accumulated. After 5 seconds, it will go 
back to the deposit menu automatically. 
5 Deposit Menu -> select item1 -> enter weight -> select item2 -> enter weight -> 
machine open compartment door of the 2 items -> user deposit -> success -> display 
points you have earned and also total point accumulated. After 5 seconds, it will go 
back to the deposit menu automatically. 
6 Deposit Menu -> select an item -> enter weight more than capacity -> display 
“Exceeded capacity, door will not open”. After 5 seconds, it will go back to the 
deposit menu automatically. 
7 The points earned can be withdrawn once the total number points reach 100. Every 
100 points is equivalent to one yuan, and the corresponding points will be deducted 
from the user's account. Create a menu to perform this transaction. Assume money 
has been received by Alipay or Weixin. 
8 In Maintenance Mode -> show current capacity and load -> empty a particular item -> 
show current capacity and load. 
9 In Maintenance Mode -> show current capacity and load -> empty the item that have 
reached maximum capacity -> show current capacity and load. 
10 In Maintenance Mode -> show current capacity and load -> empty all item -> show 
current capacity and load. 
11 Print all past transactions on the screen. 
12 These transactions should have already been saved in a text file with “TransactionYYYYMMDD.txt”
format, E.g. Transaction-20241010, which records all transactions EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
performed on that day. Do not clear the records when the program is restarted. In 
your video demo, just show the transactions for that day. 
13 User needs to link his or her resident’s details. If the resident is linked, there will be no 
limit on the number of times he or she can deposit. Otherwise, he or she will be limited 
to five times. If the user is not linked to the resident number and has already deposited 
five times -> a “deposit limit is reached” message will be displayed. To test this feature, 
one user (account) should not be linked to the residence number. 
14++ Show your special feature(s). 
IMPORTANT NOTE: Each run result should be saved in the corresponding file, and restarting 
the program should not overwrite the historical records. 
 
Reminders: 
(1) Provide adequate comments to enhance the readability of your codes. 
(2) The Recycling machine program should comprise of multiple files e.g. headers, 
implementation and main driver (e.g. *.h, *.cpp and main.cpp). 
(3) Submission deadline is 5PM, 19 December 2024. 5% (out of 100% of this CW) will be deducted 
per day of late submission. 
(4) The following items are to be submitted to Moodle 
a. Code package. A zip file EEEE2067CW-Name (E.g. EEEE2067CW-DavidChieng.zip) 
containing your code, compiled binaries and project file in one folder. Please check if you 
.exe file can run in a different machine. 
b. UML design. A report containing your design and brief description (max 2 pages, one 
page for diagram and another page for description. Remember to describe your advance 
features here). 
c. Video demo. Share it using OneDrive and put the link together with the UML design. 
 
 EEEE 2067 - Design and Implementation of Engineering Software 
Department of Electrical and Electronic Engineering 
 
 
Assessment Rubrics 
This project comprises of 4 parts and each part can be an independent assignment according to 
a typical software engineering process. 
Category Marks (%) Description (What is excellent?) What to submit? 
1. Design 20 Design a UML class diagram which captures 
all the main requirements of the project 
specification including special features. Also 
clearly illustrates the relationship between 
the classes. 
3 page-PDF file 
2. Coding 30 Correct implementation of classes and main 
driver. Usage of pointers, arrays, DMA, 
constructor and destructor. Clear and 
concise remarks which explain the code. 
Separation of header, implementation and 
driver files in support of code recycling, and 
maintenance. 
Zip file 
3. Video Demo 20 Clearly demonstrate the basic features as 
required by the task list. Also demonstrate 
advanced features. 
OneDrive link 
containing the 
video demo. Put 
the link in the 3-
page PDF file in 
1. 
4. Testing 30 • Functionality Test – demonstrate the 
required and advanced features. 
• User Interface Test - Nice and intuitive 
user interface, easy to operate. 
• Robustness Test - Able to handle wrong 
inputs with input verifications. The 
program doesn’t crash. Using exception 
handing is highly recommended. 
Nothing to 
submit here. 
Total 100 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



 

掃一掃在手機打開當前頁
  • 上一篇:CS-453程序代做、代寫C++編程語言
  • 下一篇:代做DI11004、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>
        国产精品久久| 国产欧美精品xxxx另类| 亚洲欧洲av一区二区| 亚洲老板91色精品久久| 欧美成人自拍视频| 欧美人在线观看| 国产精品成人一区二区三区夜夜夜| 亚洲区第一页| 亚洲激情网站| 欧美三区在线观看| 国产日韩成人精品| 欧美一区二区三区视频在线观看| 亚洲精品在线三区| 亚洲图片自拍偷拍| 欧美成人dvd在线视频| 国产精品久久久久9999高清| 最新国产成人在线观看| 久久精品道一区二区三区| 在线视频免费在线观看一区二区| 国产精品一二一区| 久久久av网站| 国外视频精品毛片| 亚洲国产精品一区制服丝袜| 亚洲高清精品中出| 欧美在线视频免费| 欧美在线影院| 亚洲男同1069视频| 国产精品麻豆成人av电影艾秋| 久久精品一本久久99精品| 欧美人与性动交α欧美精品济南到| 国产一区 二区 三区一级| 国产女主播一区二区三区| 久久国产加勒比精品无码| 久久亚洲风情| 欧美高清hd18日本| 亚洲欧美日本另类| 一区二区三区在线视频免费观看| 欧美伊人久久久久久午夜久久久久| 久久精品夜色噜噜亚洲a∨| 久久青草欧美一区二区三区| 久久精品国内一区二区三区| 久久久噜噜噜久久中文字幕色伊伊| 一本久久a久久精品亚洲| 欧美日韩一二区| 欧美日韩网址| 香蕉av福利精品导航| 欧美日韩人人澡狠狠躁视频| 亚洲欧洲一区二区天堂久久| 国产麻豆一精品一av一免费| 欧美日韩亚洲一区二区| 国产区在线观看成人精品| 欧美日韩一区在线| 国产精品v日韩精品v欧美精品网站| 亚洲精品护士| 亚洲高清精品中出| 亚洲国产日韩在线一区模特| 亚洲一区二区伦理| 欧美一级视频免费在线观看| 免费在线欧美黄色| 麻豆国产精品va在线观看不卡| 欧美大片一区二区三区| 国产精品久久久久影院亚瑟| 狠狠综合久久| 国产精品一区=区| 99精品欧美| 国产日韩精品在线| 国产欧美一二三区| 欧美精品日韩综合在线| 亚洲午夜视频在线观看| 国产精品免费一区豆花| 亚洲精选一区二区| 国产精品欧美日韩久久| 国产伦精品一区二区三区在线观看| 99在线精品视频在线观看| 亚洲精品乱码久久久久久按摩观| 欧美自拍偷拍| 一区在线电影| 国产午夜亚洲精品不卡| 欧美亚洲日本一区| 欧美日韩视频一区二区三区| 亚洲手机在线| 欧美高清视频免费观看| 亚洲国产欧洲综合997久久| 国产一区二区黄| 一区二区久久久久久| 国产精品午夜春色av| 欧美va天堂| 一区二区三区回区在观看免费视频| 在线观看中文字幕不卡| 欧美连裤袜在线视频| 欧美黄免费看| 欧美日韩精品在线视频| 欧美激情亚洲激情| 国产精品久久久久9999吃药| 欧美日韩高清在线观看| 国产一区自拍视频| 亚洲欧美国内爽妇网| 在线成人av.com| 亚洲国产福利在线| 久久国产乱子精品免费女| 亚洲欧洲偷拍精品| 亚洲人久久久| 国产精品99久久久久久www| 国产一区日韩欧美| 亚洲精一区二区三区| 亚洲欧美怡红院| 一区二区三区www| 欧美成人xxx| 欧美+日本+国产+在线a∨观看| 国产免费一区二区三区香蕉精| 欧美丝袜第一区| 欧美中文字幕久久| 香蕉成人啪国产精品视频综合网| 亚洲欧美成人一区二区在线电影| 亚洲精品国偷自产在线99热| 国产精品久久久亚洲一区| 国产日韩一区二区三区| 欧美视频一区二区在线观看| 久久国产免费| 欧美高清在线视频| 欧美1区免费| 国内一区二区三区在线视频| 亚洲欧美中文日韩在线| 亚洲巨乳在线| 亚洲伊人网站| 欧美人与性动交α欧美精品济南到| 91久久精品一区二区三区| 国产精品国产一区二区| 国户精品久久久久久久久久久不卡| 欧美日韩一区成人| 国产精品久久久久久久久果冻传媒| 日韩亚洲综合在线| 欧美精品在线一区| 欧美成人一区二区三区在线观看| 欧美日韩亚洲一区二区三区在线观看| 久久久噜噜噜久久狠狠50岁| 亚洲电影自拍| 欧美—级在线免费片| 免费高清在线视频一区·| 欧美一区二区在线观看| 国产美女在线精品免费观看| 亚洲视频在线观看网站| 国产精品日韩欧美一区二区三区| 亚洲国产精品va在线观看黑人| 国产欧美一区二区三区久久人妖| 久久成人这里只有精品| 亚洲男人第一av网站| 欧美极品欧美精品欧美视频| 一区二区三区在线视频观看| 国产精品一区二区在线| 欧美日韩精品二区第二页| 亚洲自拍都市欧美小说| 亚洲福利国产精品| 欧美日韩亚洲综合| 女仆av观看一区| 99国产精品久久久久老师| 欧美在线综合视频| 亚洲午夜激情免费视频| 亚洲日韩欧美一区二区在线| 欧美日韩成人综合在线一区二区| 亚洲欧美日韩区| 国产精品久久久久久户外露出| 欧美久久久久久久久久| 欧美成人资源|