99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

代寫EEEE 2067、代做C++設(shè)計編程
代寫EEEE 2067、代做C++設(shè)計編程

時間:2024-12-18  來源:合肥網(wǎng)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



 

掃一掃在手機打開當(dāng)前頁
  • 上一篇:CS-453程序代做、代寫C++編程語言
  • 下一篇:代做DI11004、Java,Python編程代寫
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                在线精品视频免费观看| 国产精一区二区三区| 丰满白嫩尤物一区二区| 日韩精品五月天| 亚洲电影中文字幕在线观看| 最新中文字幕一区二区三区| 成人免费小视频| 一区二区三区电影在线播| 亚洲一区二区在线视频| 韩国女主播成人在线观看| 欧美亚洲国产一区二区三区va| 欧美日韩一级二级三级| 亚洲最大成人综合| 91麻豆免费看片| 国产欧美精品一区二区色综合| 石原莉奈在线亚洲二区| 欧美在线观看一区| 午夜电影网一区| 7777精品伊人久久久大香线蕉超级流畅 | 日韩精品最新网址| 国产麻豆日韩欧美久久| 日韩国产一区二| 在线一区二区视频| 久久香蕉国产线看观看99| 亚洲一区二区在线免费观看视频| 国产一区在线视频| 91精品国产综合久久国产大片| 成人免费一区二区三区在线观看| 韩国v欧美v日本v亚洲v| 欧美人狂配大交3d怪物一区| 欧美精品一二三| 亚洲成av人片在线| 精品国精品国产| 国产成人精品三级| 夜夜操天天操亚洲| 欧美日韩免费视频| 9i看片成人免费高清| 2023国产精品| eeuss鲁片一区二区三区 | 欧美精品日韩精品| 首页国产丝袜综合| 久久一夜天堂av一区二区三区| 成人一区二区视频| 偷拍亚洲欧洲综合| 国产精品三级电影| 亚洲精品在线网站| 欧美精品日韩一区| 99久久精品国产观看| 精油按摩中文字幕久久| 久久国产剧场电影| 亚洲激情五月婷婷| wwwwww.欧美系列| 青青草97国产精品免费观看| 精品一区二区三区影院在线午夜| 亚洲欧美综合色| 欧美一区二区在线播放| 欧美成人三级电影在线| 亚洲在线视频网站| 亚洲视频一区在线| 国产一区二区三区免费看 | 亚洲激情图片小说视频| 91色视频在线| 亚洲va韩国va欧美va精品| 91精品国产综合久久国产大片| 2021中文字幕一区亚洲| 不卡的电影网站| eeuss鲁片一区二区三区| 精品一区二区三区在线播放 | 9l国产精品久久久久麻豆| 免费看欧美美女黄的网站| 中文字幕精品—区二区四季| 欧美一区二区三区播放老司机| 99久久久精品| 欧美一区二区三区免费视频| 欧美一区二区三区不卡| 亚洲国产精品精华液ab| 亚洲资源中文字幕| 国产精品一区二区在线观看不卡| 成人免费视频app| 欧美日韩精品一区二区在线播放 | 色噜噜偷拍精品综合在线| 成人性视频免费网站| 久久五月婷婷丁香社区| 欧美美女视频在线观看| 国产精品每日更新在线播放网址| 一本久道久久综合中文字幕| 日韩精品一区在线观看| 成人在线视频首页| 欧美日韩国产综合视频在线观看 | 欧美精品一区男女天堂| 91免费观看视频在线| 麻豆免费看一区二区三区| 中文字幕一区二区在线播放| 4438x亚洲最大成人网| 色中色一区二区| 免费日本视频一区| 91同城在线观看| 中文字幕一区免费在线观看| 国产中文字幕一区| 日韩美女一区二区三区| 日韩电影在线一区二区| 欧美日韩一区二区三区视频| 中文字幕乱码日本亚洲一区二区| 亚洲天天做日日做天天谢日日欢| 极品少妇xxxx偷拍精品少妇| 日韩免费视频一区二区| 亚洲区小说区图片区qvod| 国产福利一区二区三区视频在线 | 777午夜精品视频在线播放| 国产欧美一区二区三区在线看蜜臀| 日韩主播视频在线| 日韩色在线观看| 国产精品自拍三区| 国产日韩三级在线| 欧美一区二区三区日韩视频| 国产精品久久久久久久久免费丝袜 | 日韩欧美一区在线观看| 国产成人在线看| 麻豆国产欧美日韩综合精品二区| 亚洲精品国产精华液| 亚洲人成网站在线| 中文字幕中文字幕在线一区 | 中文字幕乱码久久午夜不卡| 麻豆精品一区二区av白丝在线| 在线看一区二区| 亚洲精品欧美综合四区| 欧美性受xxxx| 丁香五精品蜜臀久久久久99网站 | 亚洲色图第一区| 在线看国产一区| 六月丁香婷婷久久| 亚洲一区二区av在线| 制服丝袜av成人在线看| 从欧美一区二区三区| 韩国毛片一区二区三区| 一个色综合网站| 亚洲国产精品ⅴa在线观看| 777xxx欧美| 欧美色欧美亚洲另类二区| 不卡的电影网站| 欧美高清你懂得| 亚洲激情图片qvod| 欧美一区二区三区男人的天堂| 日韩一区国产二区欧美三区| 欧美视频在线一区二区三区| 精品电影一区二区| 欧美日本在线观看| 欧美唯美清纯偷拍| 欧美精品日韩综合在线| 日韩欧美在线观看一区二区三区| 日韩一区二区三区在线观看| 久久亚洲精品国产精品紫薇| 国产午夜精品理论片a级大结局 | 国产毛片精品国产一区二区三区| 国产日韩欧美制服另类| 国产亚洲精品超碰| 国产精品麻豆视频| 青青国产91久久久久久| 美女网站一区二区| 粉嫩欧美一区二区三区高清影视| 欧美精品一卡两卡| 欧美二区在线观看| 久久亚洲一区二区三区明星换脸| 欧美成人在线直播| 美女视频网站久久| 成人免费av在线| 国产揄拍国内精品对白| 91女厕偷拍女厕偷拍高清| 7777精品伊人久久久大香线蕉超级流畅 | 精品99999| 亚洲欧美另类小说| 激情久久五月天| 在线观看成人小视频| 欧美mv和日韩mv的网站| 一区二区三区在线高清| 9191久久久久久久久久久| 国产精品自拍一区| 欧美日韩一区二区欧美激情| 九九热在线视频观看这里只有精品| 亚洲色图在线看| 精品欧美一区二区在线观看| 在线免费观看不卡av| 国产精品香蕉一区二区三区| 国产女人aaa级久久久级| 成人精品高清在线| 乱一区二区av| 日韩不卡一区二区三区| 亚洲女同一区二区| 国产精品美女久久久久久久久久久 | 夜夜揉揉日日人人青青一国产精品| 日韩精品中文字幕一区二区三区| 欧美中文字幕亚洲一区二区va在线 | 处破女av一区二区| 美女一区二区久久| 五月天丁香久久| 亚洲自拍偷拍图区| 亚洲激情图片qvod| 亚洲欧美日韩系列| 亚洲精品乱码久久久久久黑人| 国产精品的网站|