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

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

SEHH2042代寫、代做Python,Java編程

時間:2023-11-03  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


SEHH2042代寫、代做Python,Java編程
SEHH2042/SEHS2042 2**4 Semester One – Group Project 1
SEHH2042/SEHS2042 Computer Programming
Group Project – Flight Schedule Management System
(Due: 23:59, 2 Dec 2023, Saturday)
Expected Learning Outcomes
 develop computer programs in one or more high level language programming environment;
 design and develop structured and documented computer programs;
 explain the fundamentals of object-oriented programming and apply it in computer program
development;
 integrate the computer programming techniques to solve practical problems.
Introduction
In this assignment, you are going to develop a “Flight Schedule Management System” that runs in
the command line environment. The system stores the schedule and status of arrival and departing
flights of Lion Rock City. Users of the system will be airport personnel, who can make changes
and search for information about the flight schedule and status.
Tasks
 Each group is required to write a Win** Console Application program called FSMS.cpp.
 Each student is required to submit a video recording (at most 2-minute long) to demonstrate
his/her individual contribution in the group project.
 Each student is required to submit a Peer-to-Peer evaluation form (online or through the given
Word file) via Blackboard.
Program Requirements
R0 When the program starts, the console should display a welcome message, followed by the
Main Menu of the program. Users can enter the options of the corresponding actions (see
R1 to R6 below).
Welcome Message designed by your group
*** Main Menu ***
[1] Load Starting Data
[2] Edit Airline
[3] Show Schedule
[4] Search Flight
[5] Edit Flight
SEHH2042/SEHS2042 2**4 Semester One – Group Project 2
[6] Credits and Exit
*****************
Option (1 - 6):
R1 [1] Load Starting Data
 When the user inputs 1 in the Main Menu, the system is loaded with starting data. The
starting data includes records of (1) airline, and (2) flight information as shown in R1.1
below. After the starting data is loaded, the system returns to the Main Menu.
R1.1 The starting data to be loaded, together with the required data format of the data fields, are
described below.
Airline records

Flight Code Prefix Airline Name
BA British Airways
CX Cathay Pacific
HX Hong Kong Airlines
JL Japan Airlines
UO Hong Kong Express
 Data format of each field:
 Flight Code Prefix: A string with two letters
 Airline Name: A string that may contain white space (assume at most 100 characters
long)
Flight information records

Flight Code Date Time Origin/
Destination
Status Direction
CX251 12/09/23 12:15 SYD On Time Arrival
BA7** 20/11/23 06:55 LHR On Time Arrival
JL114 12/10/23 14:45 NRT Delayed Arrival
UO711 15/12/23 09:00 ICN On Time Arrival
CX651 30/09/23 15:55 KHH Cancelled Arrival
HX892 01/11/23 18:00 BKK Delayed Departing
UO417 15/12/23 15:55 SIN On Time Departing
BA337 22/10/23 23:50 MAN On Time Departing
CX657 09/11/23 21:00 NYC Delayed Departing
JL228 15/10/23 19:00 CTS Cancelled Departing
SEHH2042/SEHS2042 2**4 Semester One – Group Project 3
 Data format of each field:
 Flight Code: A string which starts with two letters (the existing flight code prefix),
followed by three digits
 Date: The date of arrival or departure of the flight, taking the format “DD/MM/YY”
 Time: The time of arrival or departure of the flight, taking a 24-hour format “hh:mm”
 Origin/ Destination: The origin (or destination) airport of the arrival (or departing) fight
in the form of a 3-character airport code
 Status: Status of the flight, which can be “On Time”, “Delayed”, “Cancelled”
 Direction: A field that indicates whether the flight is arriving or departing Lion Rock
City
R1.2 Options 2 to 5 in the Main Menu are enabled only after the system is loaded with the
starting data. If the user enters options 2 to 5 before starting data is loaded, an error message
should be shown, and then the system returns to the Main Menu.
R2 [2] Edit Airline
[After the starting data is loaded] When the user inputs 2 in the Main Menu, the system
displays all the fields of all airline records in the form of a table. The user then can choose
to (1) add a new airline, (2) edit an existing airline, or (3) delete an existing airline. After
the editing, the updated airline table (for successful editing operations) or result of the
editing operation (for unsuccessful editing operations) should be shown. The system then
returns to the Main Menu.
R2.1 Your program needs to check against invalid operations on airline editing. In particular:
 The flight code prefix should be in correct format, and it should be unique in the system.
Adding a new airline with an existing flight code prefix, or one with incorrect format
should result in an error (unsuccessful editing operation).
 The user inputs the flight code prefix to choose the airline to edit. Only the airline name
can be changed for an existing airline record.
 The user inputs the flight code prefix to choose the airline to delete. An airline can be
deleted only if there is no flight associated with it from the flight information.
 During airline edit or delete, a wrong flight code prefix input results in an error
(unsuccessful editing operation).
R3 [3] Show Schedule
[After the starting data is loaded] When the user inputs 3 in the Main Menu, the system
prompts for the next input from user to choose displaying either the flight arrival schedule
SEHH2042/SEHS2042 2**4 Semester One – Group Project 4
or the flight departure schedule. After getting the user’s selection, the flight schedule
should be displayed neatly in a table format. The following fields should be included in the
display: Flight Code, Date, Time, Origin/ Destination and Status. Flight records should be
displayed in sorted order, from earliest to latest. After the schedule is shown, the system
returns to the Main Menu.
R4 [4] Search Flight
[After the starting data is loaded] When the user inputs 4 in the Main Menu, the Search
Flight Menu should be displayed, and the user can enter the options of the corresponding
actions (see R4.1 to R4.3 below).
***** Search Flight Menu *****
[1] Search Flight by Flight Code
[2] Search Flight by Origin/ Destination
[3] Search Upcoming Flights
[4] Return to Main Menu
**************************
Option (1 - 4):
R4.1 [1] Search Flight by Flight Code
 When such option is chosen, the system prompts for the flight code input by the user. All
flight records that match the input flight code (anytime, for both directions) will be
displayed. See R4.6 for the flight records display requirement.
R4.2 [2] Search Flight by Origin/ Destination
 When such option is chosen, the system prompts for the airport code input by the user. All
flight records that match the input airport code (anytime, for both directions) will be
displayed. See R4.6 for the flight records display requirement.
R4.3 [3] Search Upcoming Flights
 When such option is chosen, the system displays all flight records that are scheduled after
the current date (the date when the program is executed). See R4.6 for the flight records
display requirement.
R4.4 [4] Return to Main Menu
 When such option is chosen, the system returns to the Main Menu.
SEHH2042/SEHS2042 2**4 Semester One – Group Project 5
R4.5 Stay at the Search Flight Menu
Following R4.1, R4.2 and R4.3, after the information is displayed or error messages for
wrong input, the system should return to the Search Flight Menu.
R4.6 Flight Records Display Requirement
The flight records retrieved under [4] Search Flight should be displayed in sorted order,
from earliest to latest. The display should contain ALL fields from the flight information.
R5 [5] Edit Flight
[After the starting data is loaded] When the user inputs 5 in the Main Menu, he/she then
can choose to (1) add a new flight, (2) edit an existing flight, (3) delete an existing flight,
or (4) delete all cancelled flights. After the editing, result of the editing operation (changes
made for successful editing, or error messages for unsuccessful editing) should be shown.
The system then returns to the Main Menu.
R5.1 Your program needs to check against invalid operations on flight editing.
Add a new flight record
 All fields for a flight record should be input, and in correct format.
 The system should not be added with duplicate flight records, i.e., records with same
flight code, same date and same time.
 You can assume the system does not store more than 100 flight records.
 Any wrong inputs should result in an unsuccessful operation, and no update to the
system data should be carried out.
Edit or delete an existing flight record
 The user inputs the flight code to select a record to edit or delete. If there are more than
one records with the same flight code, the user is further prompted to choose which
record to edit or delete by using a numeric input.
 For editing, only the flight status can be changed for an existing flight record.
 Any wrong flight code inputs should result in an unsuccessful operation, and no update
to the system data should be carried out.
Delete all cancelled flights
 The system prompts for user’s “Yes/No” confirmation. If the user inputs ‘y’ or ‘Y’, all
flight records with the “Cancelled” status should be removed from the system. If the
user inputs ‘n’ or ‘N’, no update to the system data should be carried out.
SEHH2042/SEHS2042 2**4 Semester One – Group Project 6
R6 [6] Credits and Exit
When the user inputs this option, the system prompts for user’s confirmation. If the user
inputs ‘n’ or ‘N’, the system returns to the Main Menu. If the user inputs ‘y’ or ‘Y’, the
system displays the personal particulars (student name, student ID, tutorial group) of the
group members and terminates. Other input is not acceptable and the system should ask
the user to confirm again.
R7 Suitable checking on user’s input is expected, except in situations with assumptions stated
in the requirements above. Appropriate error messages should be printed whenever
unexpected situation happens, e.g., input value out of range, incorrect time format, etc.
R8 The use of functions (in addition to main function) and classes (i.e., OOP design) are
expected in your program. Appropriate comments should be added in your source code file.
R9 Creativity and Critical Thinking: Use suitable format to present all required information of
airline and flight schedule clearly and neatly. Additional features can be added.
Tips
1. To handle unexpected input error (e.g. input a character to an integer variable), you may use
the following code appropriately in your program:
cin.ignore(); // Discard the content in the input sequence.
cin.clear(); // Reset the input error status to no error.
2. To write codes about getting current date and comparing two dates, try to study further about
the time(), mktime(), localtime() functions and the usage of “struct tm” structure
under <ctime>.
Video Requirements
This is an individual task under this group project. Each student needs to create a video recording
which records either (1) your explanation on the working algorithms of the codes that you designed
and wrote, or (2) the testing of project codes (those you wrote or the whole group’s work) using
test case scenarios. See points below for the specific requirements of the video recording:
 Duration of video is at maximum 2 minutes long. Use MS Teams to record.
 The video recording is used to demonstrate your contribution in the group project. If your work
done is too much to be all included in the 2-minute video, choose the most important/
representative work to record and explain.
SEHH2042/SEHS2042 2**4 Semester One – Group Project 7
 At the beginning, introduce the objective of your video: whether you are going to (1) explain
the working algorithms of your codes, or (2) run and test your project codes.
 The video should include your voice recording (in English) as you give the presentation (either
code explanation or the code testing). Your voice should be clear and loud enough.
 The video should show the computer screen as you give the presentation.
 The video should keep showing your English name, Student ID and lecture group on the screen
(text information) for identity verification. It is optional to show your face in the recording.
 Show the whole screen, not just part of the screen. While showing the source codes or codetesting results, make sure the text is clearly shown, large enough and visible.
Submission
Source File: Each group submits one source code file (i.e., FSMS.cpp).
Video Recording: Each student submits the shared video link via Blackboard, through which your
video recording can be viewed by your subject lecturer successfully.
[IMPORTANT: Remember to set up the access right correctly for the shared link.]
Peer-to-peer Evaluation: Each student fills in the peer-to-peer evaluation form via Blackboard.
All submission should be done through Blackboard by 23:59, 2 Dec 2023. Late submission is
subject to 20% deduction in your final marks for each day (including public holidays and Sundays).
No late submission is allowed 4 days after the due date.
Components Weighting
1. Program (FSMS.cpp) 80% (Group & Individual)*
2. Video Recording 20% (Individual)
Total 100%
* Marks for (1) Program is determined by the group-based marks (80%) and percentage of
individual contribution (20%), where the percentage of individual contribution is directly
proportion to the average marks given by group members in the peer-to-peer evaluation.
Grading Criteria (Program)
Your program will be executed with different test cases in Microsoft Visual Studio. Any deviation
from the requirement is considered as incorrect and no mark is given for that case. Your program
will also be marked based on its user-friendliness and creativity (e.g., information display,
appropriate prompt messages and action result messages if needed).
SEHH2042/SEHS2042 2**4 Semester One – Group Project 8
Aspects Percentage
Program correctness
(Follow ALL instructions, marks deduction on errors found) 70%
Program design
(Appropriate use of functions, use of class, modularity, etc.) 5%
Program standard
(Use of variable names, indentation, line spacing, clarity, comments, etc.) 5%
Algorithm design
(Use of reasonable algorithms and data structures) 5%
User-friendliness
(Clear guidelines to users, messages to users, etc.) 5%
Creativity and critical thinking (Additional useful features) 10%
Total (Group Mark) 100% (max)
Note: the length of your program does not affect the grading of the assignment. However,
appropriate use of loops and functions are expected to avoid too many repeated codes in your
program, which contributes to the program design score of this assignment.
Marks Deduction (Program)
Syntax error: 100% deduction. You will get 0 mark if your program fails to be compiled.
Runtime error: No mark for the particular test case that triggers the runtime error.
Logic error (bug): No mark for the particular test case that deviates from the requirement. Note
that a logic error may lead to failure in ALL test cases of one particular set of requirements.
Grading Criteria (Video Recording)
Aspects Percentage
Basic requirements (video length, language used, showing identity, etc.) 25%
Presentation contents (suitable content, logical presentation, etc.) 50%
Communication clarity (text display, voice, mouse actions, etc.) 25%
Total 100% (max)
*** Ensure the originality of your work. Plagiarism in any form is highly prohibited. ***
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:ACS130代做、代寫C++語言編程
  • 下一篇:代做COP5615、代寫Java,Python編程
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

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

          9000px;">

                成人丝袜视频网| 欧美体内she精高潮| 欧美亚日韩国产aⅴ精品中极品| 成人欧美一区二区三区小说 | 精品成人免费观看| 国产另类ts人妖一区二区| 国产欧美精品一区二区色综合 | 欧美色精品在线视频| 日本成人在线电影网| 国产偷国产偷精品高清尤物| 91色在线porny| 日韩国产一区二| 国产三区在线成人av| 欧美色视频在线| 成人综合激情网| 午夜久久久久久| 中文字幕第一区| 日韩欧美黄色影院| 色天使久久综合网天天| 黄一区二区三区| 亚洲一区二区三区三| 日本一区二区视频在线| 欧美日韩国产高清一区| 成人动漫精品一区二区| 免费在线观看成人| 亚洲老妇xxxxxx| 国产日韩欧美精品电影三级在线| 欧美日韩亚洲综合一区| 97久久久精品综合88久久| 久久99精品国产| 五月激情综合网| 亚洲地区一二三色| 国产精品不卡在线观看| 久久男人中文字幕资源站| 欧美一区二区三区啪啪| 91成人免费电影| 99久久久精品| 99久久精品免费精品国产| 国产精品自在欧美一区| 精品影视av免费| 日韩精品乱码免费| 亚洲成人在线免费| 亚洲国产人成综合网站| 亚洲高清不卡在线观看| 一区二区三区高清在线| 日韩理论片在线| 亚洲视频在线一区二区| 中文字幕精品在线不卡| 中文字幕国产一区二区| 亚洲国产精华液网站w| 日本一区二区成人| 中文字幕制服丝袜一区二区三区| 中国色在线观看另类| 国产精品成人一区二区艾草 | 欧美一区二区三区免费在线看| 欧美综合久久久| 欧美日韩免费在线视频| 欧美一区二区三区四区视频| 日韩一区二区不卡| 国产午夜亚洲精品不卡| 国产精品国产三级国产有无不卡| 国产精品美女久久久久高潮| 亚洲裸体xxx| 夜夜精品视频一区二区| 亚洲第一在线综合网站| 美国毛片一区二区| 国产成人精品一区二区三区网站观看| 国产老妇另类xxxxx| 99久久久无码国产精品| 欧美午夜精品久久久| 日韩一级大片在线观看| 久久久久成人黄色影片| 亚洲欧美另类图片小说| 丝袜亚洲另类欧美| 国产老女人精品毛片久久| 97se亚洲国产综合自在线不卡 | 久久精品人人做人人综合| 亚洲日本一区二区三区| 五月婷婷欧美视频| 国产一区二区三区在线观看免费| eeuss鲁片一区二区三区 | 欧美日韩另类一区| 精品裸体舞一区二区三区| 亚洲欧洲性图库| 麻豆一区二区三| 不卡影院免费观看| 欧美一级夜夜爽| 亚洲三级在线看| 开心九九激情九九欧美日韩精美视频电影 | 欧美一区二区久久| 综合久久久久久| 久久精品免费观看| 欧美视频在线一区二区三区 | 日韩一区二区三免费高清| 一色屋精品亚洲香蕉网站| 蜜桃在线一区二区三区| 91免费国产视频网站| 久久夜色精品一区| 婷婷激情综合网| 色哟哟一区二区| 欧美激情综合五月色丁香| 日本视频一区二区三区| 色婷婷国产精品久久包臀| 国产午夜精品一区二区| 久久精品国产99久久6| 欧美日本一区二区三区四区| 最新不卡av在线| 成人天堂资源www在线| 日韩欧美国产一区二区三区| 亚洲自拍偷拍综合| av一二三不卡影片| 日韩一区欧美小说| eeuss影院一区二区三区| 欧美激情综合在线| 国产91露脸合集magnet| 久久毛片高清国产| 国产在线精品一区二区三区不卡| 欧美一区二区三区四区久久| 日韩av电影免费观看高清完整版 | 欧洲国内综合视频| 中文字幕日韩av资源站| 国产**成人网毛片九色 | 久久99这里只有精品| 日韩免费视频一区二区| 日韩影院在线观看| 欧美精品1区2区3区| 丝袜国产日韩另类美女| 91黄色激情网站| 亚洲国产日韩a在线播放性色| 欧美在线三级电影| 亚洲mv大片欧洲mv大片精品| 欧美色视频在线观看| 午夜精彩视频在线观看不卡| 欧美卡1卡2卡| 久久69国产一区二区蜜臀| 亚洲精品在线一区二区| 国产成人免费视频一区| 最新成人av在线| 欧美人成免费网站| 久久机这里只有精品| 国产目拍亚洲精品99久久精品| 国产99久久久精品| 樱花草国产18久久久久| 91精品国产美女浴室洗澡无遮挡| 久久99精品久久久久久久久久久久| 国产视频一区在线观看| 一本久久精品一区二区| 免费观看成人av| 国产精品久久久久久久久搜平片| 在线日韩一区二区| 麻豆精品国产传媒mv男同| 久久久久久久性| 欧美亚洲一区三区| 国产一二三精品| 亚洲午夜在线视频| 久久精品欧美日韩精品| 欧美亚洲一区二区在线| 极品少妇xxxx精品少妇偷拍| 自拍偷拍欧美精品| 26uuu色噜噜精品一区| 91久久精品网| 国产激情一区二区三区桃花岛亚洲| 亚洲色欲色欲www在线观看| 5858s免费视频成人| 岛国精品在线观看| 天堂资源在线中文精品| 中文字幕国产一区二区| 777xxx欧美| 91传媒视频在线播放| 国产成a人亚洲精品| 日韩av电影一区| 亚洲激情成人在线| 久久嫩草精品久久久精品| 欧美日韩免费电影| 91欧美一区二区| 国产91精品一区二区麻豆亚洲| 蜜臀av性久久久久蜜臀aⅴ流畅| 樱花草国产18久久久久| 中文字幕av一区二区三区高| 精品国产免费人成电影在线观看四季 | 成人一级片在线观看| 麻豆成人av在线| 午夜不卡av在线| 亚洲成人av中文| 亚洲午夜电影网| 亚洲激情男女视频| 亚洲男人天堂一区| 亚洲色图清纯唯美| 17c精品麻豆一区二区免费| 国产拍欧美日韩视频二区| 26uuu久久天堂性欧美| 欧美成人一区二区三区片免费 | 视频精品一区二区| 亚洲成在人线在线播放| 亚洲国产精品一区二区www| 夜夜嗨av一区二区三区中文字幕| 亚洲人成网站精品片在线观看| 亚洲人成网站精品片在线观看| 亚洲色图视频免费播放| 亚洲一线二线三线视频|