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

        COMP2005J代寫、代做Python,Java程序設計

        時間:2023-11-23  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯


        COMP2005J Object Oriented Programming

        Course project description

        You need to implement a Car rental system in java using object-oriented programming. You

        need to implement your code by using at least 3 of the main pillars of Object oriented

        programming (Encapsulation, Inheritance, Polymorphism). This means that you need

        to use Interfaces, Nested Classes, Class hierarchy and other features related to

        these concepts as necessary.

        * Encapsulation: By creating classes for Car, Reservation, User, and Admin and

        wrapping data and methods that operate on the data into a single unit.

        * Inheritance: By using subclasses for different Car Categories types ( SUV,

        SEDAN, Sports) which will inherit properties from a parent Car class.

        * Polymorphism: By utilising interface methods that can be implemented differently

        for user and admin, allowing different behaviours for the two user types.

        System Entry:

        Upon starting the application, users are greeted with a main menu (Command line

        Interface):

        ● User: This option directs the user to the user panel.

        ● Admin: This option directs the user to the admin panel.

        ● Exit: This option allows the user to exit the application.

        User Panel:

        In the user panel, users can:

        ● See Available Cars for Rent: Users can view the list of cars available for

        rent. If there are no cars available, a message indicating the unavailability is

        displayed.

        ● Rent a Car: Users can choose to rent a car.

        ● See Your Reservations: Users can view their car rental reservations.

        ● Return a Car: Users can return a rented car.

        ● Exit: Users can go back to the main menu.

        Admin Panel:

        In the admin panel, administrators can:

        ● Add a Car: Administrators can add a new car to the inventory.

        ● See All Cars: Administrators can view the entire list of cars in the inventory.

        ● Delete a Car: Administrators can remove a car from the inventory.

        ● Exit: Administrators can go back to the main menu.

        Car Configurations:

        * You do not need to use a database to store the inventory. You only need to keep

        track of the inventory during the runtime of the code and the inventory should reset

        when you end the execution.

        ● Car Categories and Rates:

        ● SEDAN: Hourly rate RMB**, Daily rate RMB350, Weekly rate RMB**0

        ● SUV: Hourly rate RMB120, Daily rate RMB450, Weekly rate RMB1100

        ● SPORTS: Hourly rate RMB150, Daily rate RMB550, Weekly rate

        RMB1400

        Each car has attributes:

        ● Category (SEDAN, SUV, SPORTS)

        ● Model ("BMW", "Porsche", "Audi")

        ● Quantity

        Model Rate Adjustments:

        ● Rates are subject to adjustments based on the car's model:

        ● BMW: 20% of the total bill.

        ● Porsche: 30% of the total bill

        ● Audi: 10% of the total bill

        should be added to the bill, if the user chooses the particular model.

        Tasks:

        1. Implement fully functional User Panel as stated above. Upon renting a car,

        the user should be able to see the final bill. Also, the user should see the

        billed amount while seeing the reservation. After renting or returning the car,

        the available cars to rent should be updated. For instance, see the following:

        Available cars for rent should be updated as the following:

        2. Implement fully-functional Admin Panel as stated above. Admin should be

        able to add/delete a car from the inventory. It should impact the available cars

        to rent.

        See the current Inventory after adding new car:

        See the available cars to rent in the user panel:

        The available cars to rent for Audi, Sedan becomes 13. Because the user

        rented 7 cars of the same model before. So, the inventory has 20 Audi,

        Sedan, but only 13 of them are available for rent.

        Test Scenarios:

        You should record your screen when running the following tests and submit a

        video inside the zip file. The video duration should be less than two minutes,

        and you should explain by talking to the microphone during the recording.

        ● The Admin adds 10 BMWs (1 Sport, 5 Sedan, 4 SUVs).

        ● The customer tries to rent 4 SUVs of the model "BMW" for one day and

        will be billed considering both the SUV daily rate and the BMW model

        adjustment.

        ● The customer tries to rent 2 SUVs and receives an error: “We do not

        have enough cars”.

        ● The customer returns 1 BMW SUV and receives a promt saying

        (Returned Sussecfully!).

        ● The Customer checks the reservations and now it should only be able

        to see 3 BMW SUVs in the reservation list.

        Bonus Point (10% Extra):

        To get the extra 10% the rental system should implement a Graphical User Interface (GUI) to

        allow the users to interact with it. Here is a Tutorial and a video guide on creating GUIs in

        IntelliJ Swing.

        Grade component

        Project submission (40% of full grade).

        Submission deadline

        The submission deadline is Thursday, November 30, 2023, at 23:59 hours (Beijing time).

        Submission guidelines

        Your submission should include:

        ● Source-code of your implementation application, implemented in java. You should

        submit your code as a project and not as a single file. For this you should export

        your project as a zip file from the IDE (See how to do it on IntelliJ).

        ● The screen recording of test scenarios (less than 2 minutes). If you have a GUI you

        should also record the test scenarios using that.

        ● A detailed configuration report (in PDF format) describing your implementation of the

        course project. This report should describe in detail how you have implemented the

        project, and the various challenges that you faced during the same. This manual

        should describe the step-by-step procedure of developing your code maximum 7

        pages including cover and references.

        Please upload a single zipped folder (in .zip format) containing all these files arranged in a

        systematic manner.

        The naming convention for each of the projects is:

        ucdconnectid_pM.zip

        where ucdconnectid is your UCD Connect ID, M is the project number, and p and zip are

        in lower-case characters.

        For example, a student John Smith with the UCD Connect ID 12345678 would submit the

        first project as 12345678_p1.zip.

        Grading scheme

        The penalties for late submission are as follows:

        ● Less than 15 minutes past the deadline - no penalty.

        ● Greater than 15 minutes and less than 2 hours past the deadline - loss of 25% of the

        final mark.

        ● Greater than 2 hours past the deadline - loss of 50% of the final mark

        The submission will be graded based on the following criteria:

        ● Correctness: The software should perform as described in the final report.

        ● Robustness: The software should operate reliably and be not subject to frequent

        abnormal terminations.

        ● Report Quality: The associated configuration report should be organised and

        well-structured and.

        ● Use of Object Oriented Programming Concepts (Encapsulation, Inheritance,

        Polymorphism).

        ● Video presentation: You should explain steps of the test during the recording.

        If you have any queries about the Project details:

        ** Create a new topic in the Brightspace Discussion Forum under the Project Q&A.

        2- In case of personal circumstances Contact your TA (abdul.wadud@ucdconnect.ie)

        3- Do not leave your questions for the days closer to the deadline as we might not be able to

        answer all the questions in a short time.

         

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

         

        掃一掃在手機打開當前頁
      1. 上一篇:TELE9754代做、代寫Python,c++編程
      2. 下一篇:代寫COMP228、代做Python,Java編程
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
        急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發(fā)動機性能
        挖掘機濾芯提升發(fā)動機性能
        海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
        合肥機場巴士2號線
        合肥機場巴士2號線
        合肥機場巴士1號線
        合肥機場巴士1號線
      4. 短信驗證碼 酒店vi設計 NBA直播 幣安下載

        關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

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

        精品国产一区二区22| 手机国产乱子伦精品视频| 国产成人精品电影在线观看| 精品人妻伦九区久久AAA片69| 日韩亚洲人成网站| 日韩熟女精品一区二区三区 | 国产精品美女久久久久av超清| 国产私拍福利精品视频推出| 精品亚洲麻豆1区2区3区| 久久99久久99精品免观看不卡| 久久成人精品视频| 亚洲乱码精品久久久久..| 9i9精品国产免费久久| 亚洲午夜成人精品电影在线观看| 日韩电影中文字幕在线网站| 日韩成人无码中文字幕| 国产在热线精品视频| 国产精品扒开做爽爽爽的视频| 无码人妻精品丰满熟妇区| 精品毛片乱码1区2区3区| 亚洲国产精品无码久久98| 国色精品卡一卡2卡3卡4卡免费| 国产精品成人观看视频国产| 亚洲精品国产情侣av在线| 91精品综合久久久久久五月天| 久久久久女人精品毛片| 99精品国产在这里白浆| 熟女精品视频一区二区三区 | 亚洲福利一区二区精品秒拍| 乱码精品一区二区三区| 99热精品久久只有精品30| 老汉精品免费AV在线播放| 麻豆亚洲AV永久无码精品久久| 99re热精品视频国产免费| 99久久99久久免费精品小说| 99热精品国产麻豆| 91免费福利精品国产| 国产精品55夜色66夜色| 国产精品密蕾丝视频| 国产精品视频一区| 国产精品白浆无码流出|