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

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

代寫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編程代寫
  • 無相關信息
    合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美精品欧美精品| 免费不卡亚洲欧美| 国产精品第8页| 欧美怡红院视频一区二区三区| 国产伦精品一区二区三区照片 | 亚洲综合视频一区| 国产专区欧美专区| 国产精品无av码在线观看| 日韩欧美在线一区二区| 91国产在线精品| 精品伦理一区二区三区| 欧美二区在线| 国产精品丝袜视频| 人妻少妇精品无码专区二区| 久久久久久a亚洲欧洲aⅴ| 亚洲免费视频一区| 国产欧美中文字幕| 国产精品久久激情| 国模私拍视频一区| 国产精品国三级国产av| 蜜桃成人免费视频| 久久天天躁狠狠躁夜夜躁2014| 欧美精品久久久| 久久精品国产一区二区三区 | 欧美巨大黑人极品精男| 国产在线观看一区二区三区| 国产精品电影网| 国产私拍一区| 精品国产一区二区三区麻豆小说| 国内视频一区二区| 欧美片一区二区三区| 国产美女精品久久久| 国产av不卡一区二区| 国产精品一区二区在线| 在线视频福利一区| 91免费在线观看网站| 春色成人在线视频| 国产chinese精品一区二区| 日本高清视频一区| 国产精品欧美一区二区三区奶水| 免费看a级黄色片| 欧美激情视频在线观看| 91九色极品视频| 日本久久久久久| 日韩在线播放视频| 欧美成人在线网站| 国产99久久久欧美黑人| 狠狠噜天天噜日日噜| 国产高清不卡av| 欧美久久久久久久久久久久久| 国产精品国产亚洲精品看不卡| 国产日韩欧美视频| 亚洲a一级视频| 久久久久久久久91| 国产日韩欧美精品| 熟女少妇在线视频播放| 国产精品入口尤物| 99电影网电视剧在线观看| 日本中文字幕在线视频观看| 久久久久久久久影视| 国产中文字幕91| 午夜啪啪免费视频| 国产精品免费看久久久无码| 阿v天堂2017| 欧美亚洲伦理www| 伊人久久在线观看| 久久精品国产久精国产一老狼| 国产精品夜色7777狼人| 日韩精品一区二区三区四| 欧美xxxx18性欧美| 7777免费精品视频| 国产主播精品在线| 日韩免费一区二区三区| 欧美精品在线观看| 久久亚洲中文字幕无码| 国语自产精品视频在免费| 亚洲激情免费视频| 国产精品都在这里| 久久国产乱子伦免费精品| 国产综合av在线| 日本三级韩国三级久久| 国产99视频在线观看| 久久视频中文字幕| 久久艳妇乳肉豪妇荡乳av| 国产日韩欧美大片| 热久久这里只有精品| 亚洲一区二区三区久久| 久久中文字幕国产| 国产成人午夜视频网址| 成人精品一区二区三区电影黑人| 青青视频在线播放| 午夜精品久久久久久99热软件 | 青青草久久网络| 亚洲欧洲一区二区| 精品免费日产一区一区三区免费 | 亚洲综合一区二区不卡| 国产精品国产一区二区 | 粉嫩av免费一区二区三区| 欧洲久久久久久| 亚洲成色www久久网站| 国产精品伦子伦免费视频| 久久久久综合一区二区三区| 91九色国产视频| 北条麻妃在线视频观看| 国产卡一卡二在线| 国产在线一区二| 免费在线观看亚洲视频| 性色av一区二区三区在线观看| 国产h视频在线播放| 亚洲国产另类久久久精品极度 | 欧美激情网站在线观看| 日韩亚洲第一页| 国产高清免费在线| 91成人免费观看网站| www精品久久| 99在线视频播放| 国产区亚洲区欧美区| 国内精品视频在线播放| 欧美日韩一区在线视频| 欧美伊久线香蕉线新在线| 久久精品欧美| 日本高清视频一区二区三区| 丁香色欲久久久久久综合网| 懂色一区二区三区av片| 午夜精品久久久久久99热软件| 亚洲欧洲精品一区二区 | 日韩极品视频在线观看| 日韩视频免费在线播放| 日本一欧美一欧美一亚洲视频| 视频一区视频二区视频| 无码人妻aⅴ一区二区三区日本| 亚洲日本欧美在线| 亚洲国产精品影视| 日韩av免费一区| 日韩精品一区二区三区色偷偷 | 91精品久久久久久久久中文字幕| 国产精品午夜国产小视频| 成人免费在线网| 97精品国产97久久久久久| 777国产偷窥盗摄精品视频| 久久艳妇乳肉豪妇荡乳av| 久久久久久99| 久久久国产一区二区| 国产精品夫妻激情| 欧美激情亚洲另类| 午夜精品一区二区三区在线| 午夜精品一区二区三区在线 | 精品午夜一区二区三区| 国产三级中文字幕| 97热精品视频官网| 国产精品99久久久久久久久 | 一区不卡视频| 亚洲wwwav| 欧美午夜精品久久久久久蜜| 欧美日韩一区二区视频在线| 国产亚洲福利社区| 99久久综合狠狠综合久久止| 久无码久无码av无码| 国产成人生活片| 精品国产一区二区三区在线| 亚洲一区二区三区精品视频 | 欧美日韩国产第一页| 午夜精品一区二区三区在线观看| 国产女人18毛片水18精品| 91免费版网站入口| 国产成人精品自拍| 欧美日本国产在线| 亚洲欧美日韩精品久久久| 九色综合日本| 国产精品美女在线观看| 在线观看欧美一区| 日本精品一区二区三区不卡无字幕| 欧美一级黑人aaaaaaa做受| 国产日韩欧美91| 久久久99爱| 欧美精品日韩www.p站| 日本一区二区在线视频| 精品日本一区二区三区在线观看| 国产精品一区二区电影| 日韩在线免费av| 欧美极品第一页| 日本黄网免费一区二区精品| 国产一区二区三区四区五区加勒比| 高清欧美性猛交| 国产精品爽爽ⅴa在线观看| 中文字幕久精品免| 欧美性受xxx| 国产经典久久久| 欧美久久精品一级黑人c片| 欧美专区在线观看| 97碰碰碰免费色视频| 国产精品久久久影院| 日本一区不卡| av天堂永久资源网| 另类色图亚洲色图| 欧美在线影院在线视频| 91精品国产高清久久久久久91裸体| 国产精品免费福利| 天天久久人人| 国产精品一区二区久久精品|