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

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

        時間:2023-11-23  來源:合肥網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. 無相關信息
        合肥生活資訊

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

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

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

        主站蜘蛛池模板: 无码av免费一区二区三区| 亚洲高清成人一区二区三区| 精品一区二区三区在线观看l | 日韩人妻一区二区三区蜜桃视频| 亚洲国产一区二区三区在线观看| 久久精品一区二区免费看| 日韩精品一区二区三区在线观看l 日韩精品一区二区三区毛片 | 国产裸体舞一区二区三区| 少妇激情一区二区三区视频| 国产精品男男视频一区二区三区| 国产丝袜无码一区二区视频| 玩弄放荡人妻一区二区三区| 精品国产鲁一鲁一区二区| 亚洲国产美国国产综合一区二区| 亚洲一区爱区精品无码| 日本亚洲国产一区二区三区| 国产一区二区三区精品视频| 亚洲一区二区三区无码影院| 国产精品一区12p| 精品一区二区三区影院在线午夜| 在线日产精品一区| 亚洲一区免费在线观看| 美女毛片一区二区三区四区| 2021国产精品一区二区在线| 精品国产a∨无码一区二区三区| 久久无码人妻一区二区三区午夜| 日本免费一区二区三区 | 亚洲一区二区三区国产精品无码| 无码国产精品一区二区免费式影视 | 免费一区二区三区在线视频| 精彩视频一区二区| 久久国产香蕉一区精品| 综合无码一区二区三区| 日产亚洲一区二区三区| 国产精品久久一区二区三区| 无码国产精品一区二区免费 | 激情内射亚州一区二区三区爱妻| 国产一区二区在线观看app| 亚洲一区二区电影| 精品人妻无码一区二区三区蜜桃一 | 无码人妻精品一区二区蜜桃AV|