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

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

CPT206代做、代寫Java編程語言
CPT206代做、代寫Java編程語言

時間:2025-05-08  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CPT206 Computer Programming for Financial Mathematics:
Coursework 3 Task Specification
Set: Tuesday 29 April, 2025
Due date: Sunday 18 May, 2025, 23:59
This is the specification task sheet for the Coursework 3 assessment component of your CPT206
module. The task covers all Learning Outcomes, and accounts for 70% of the final mark for this
module. This assignment has two parts: a coding part described in Section 1, and a report described
in Section 2. The submission deadline for this assignment is Sunday 18 May, 2025, at 23:59
(China-time). Detailed submission instructions are provided in Section 3.
1 Program description (72 marks)
The aim of this coursework is to build a budget planning and management system (for an individual,
family, company, etc.). All the work should be coded into a single Java NetBeans project, with
the class structure and different functionalities of the program described below. All classes should
be properly encapsulated, as seen in the Lectures and Labs throughout the semester. Your project
should also contain a main class for running the application.
1.1 Transaction class and subclasses (24 marks)
The Transaction class will be a base class representing a transaction. It will have two subclasses:
Expense and Income. Each transaction is for a specified positive amount, and occurs on a given
date and at a given time. Transactions are given a unique identifier in the system (using the built-in
java.util.UUID class). The date and time of a transaction will be used to sort transactions (see
some of the operations in the BudgetManager class in Section 1.3). You may assume that no two
transactions will ever occur at the exact same date and time in the system. The Transaction class
should also have a getEffectiveAmount() method that returns the signed value (i.e., negaive for
expenses, positive for income) of the amount which effectively occurs for that transaction (taking
into account fees and so on). This method will be overridden in the subclasses.
Each income transaction should also indicate its source (such as salary, gift, bonus, etc.). The
effective amount of an income transaction is the same as its amount. Expenses should use a
specific payment method, which should be one of the following: cash, card, Alipay, or WeChat.
Each payment method comes with a specified fee or charge, corresponding to a certain percentage
of the transaction amount: 0% for cash payments, 1% for card payments, and 0.5% for both Alipay
and WeChat payments. This fee should be incorporated into the calculated effective amount of the
transaction.
1
1.2 BudgetCategory class (10 marks)
The BudgetCategory is intended to manage expenses related to a particular category, such as
food, electricity bills, holiday costs, and so on. Each budget category has a name, a fixed monthly
limit (how much money can in theory be spent on that category every month), and a current
expenditure (the amount that has been spent on that category during the current month to date).
Budget categories are always created with a current expenditure of 0. There should be methods
to add expenses to the category, to check if current expenditure is over the monthly limit, and to
reset the current expenditure to zero. Note that in a fully-developed application, this last method
would be automatically called on the first day of each month, but that is not a requirement for this
coursework task.
1.3 BudgetManager class (20 marks)
The BudgetManager class should be responsible for managing an entity  s budget (here,   entity  
could be an individual person, a family, a company, and so on). For that, it should store the
information of all expenses incurred and income received by the entity. Every expense should be
tied to a specific budget category, and it should be easy to retrieve all expenses tied to a particular
category. Income is not tied to a particular category. You should choose an appropriate object
from the Java collection framework to store expenses and income, and leave a comment in your
code clearly detailing and explaining your choice. On initial creation, a BudgetManager will have
no expenses or income.
Budget managers should be able to add transactions. New incomes are simply added to the
collection above, while the method to add a new expense should also specify the corresponding
budget category. If the new expense would cause that category  s current expenditure to exceed the
monthly limit, a customised MontlyLimitExceededException should be thrown, with a suitable
error message displayed. This means that you will have to create a MonthlyLimitExceededException
class in your program. Budget managers should also be able to add new budget categories (with
initially no corresponding expenses), and delete existing ones.
Finally, your class should be able to filter relevant information pertaining to expenses and/or
income, through methods that retrieve the following information:
? all expenses incurred in a specified budget category (see above);
? all expenses incurred that exceed a specified amount (in effective terms).
? all transactions that occurred in a particular time period (specified by its start and end dates).
All filtered transactions retrieved as above should be sorted according to the date and time they
occurred.
1.4 User interface (10 marks)
In order to create a friendly user-interactive application that allows the user to manage their
budget, you should add a command-line text-based user interface to your program. Since
user interfaces have not been taught in this course this semester, you will have to learn how to
code such an interface. To do this, you should enlist the help of XipuAI (for more details, see
Section 2.3).
Your user interface should allow a user to manage their budget according to the functionalities of
the BudgetManager class from Section 1.3. You may also wish to include additional functionalities
2
not listed in the task description (for example, calculating net earnings  C total income minus total
expenditure  C over a given period). Your interface should adhere to best practices of command-line
interfaces, including but not limited to exception handling, input validation, and so on. It should
also be user-friendly and easy to navigate.
1.5 Code quality (8 marks)
The remaining marks (8) will be awarded for the quality of your code and documentation, as
covered throughout the semester in the Lectures and Labs.
? Keep your code neat and tidy; make sure it is properly indented throughout.
? Choose suitable names for variables and methods, respecting standard Java naming conventions.
? Comment your code as needed.
? Split your code into separate methods as appropriate; methods should not be too long.
You should also write Javadoc comments for the entire API of the BudgetManager class from
Section 1.3, and submit the corresponding generated Javadoc file   BudgetManager.html   (see
detailed submission instructions in Section 3). You do not need to write Javadoc comments for
the other classes.
2 Report (28 marks)
For this part of the assignment, you should write a report detailing how you designed, implemented,
and tested the program described in Section 1. The report should be typed into e.g. a Word
document, and submitted as a PDF (see Section 3 for more details). Where appropriate in the
report, you should refer to specific lecture slides (or parts of Lab worksheets), e.g.   as seen in
Lecture 10, slides 32-34  .
2.1 OOP features (10 marks)
Over the course of the semester, you have learned a number of OOP features (e.g encapsulation)
and principles (e.g. single responsibility principle). In your report, you should explain where you
have incorporated these in your design and how you have done so; include a brief definition of
the features/principles in question. Be as precise as possible, illustrating with small portions of
code if necessary. Note that not all the features and principles we saw in the lectures need to be
incorporated into your design; your report should only discuss those that are. This section should
be one-and-a-half to two pages in length.
Good example: The Single Responsibility Principle states that every class in the program
should have responsibility over a single functionality of the program; a class should do one thing.
This principle is incorporated into our class design: all the classes have their own, separate, purpose.
For instance, the Transaction class...
Bad example: Encapsulation and inheritance are two core features of OOP; they are used in
many parts in my program.
2.2 Testing description (10 marks)
As covered throughout the Lectures and Lab sessions in this module, testing is an essential part of
writing computer programs. In your report, you should include a description of how you tested the
3
various parts of the program described in Section 1. Your testing may use the JUnit framework
if you are familiar with it, or simply manually check cases in the main class. Your report should
state clearly what functionalities you tested, and describe how you tested them, thinking carefully
about possible corner cases. You may include some sample code if you wish. This section should
be one-and-a-half to two pages in length (screenshots/code excluded).
2.3 AI-assisted user interface design and implementation (8 marks)
As stated above, you should use XipuAI to teach you how to build a command-line user interface
for this program. You may use AI in any part of this process. For example, you may wish learning
about basic concepts of user interfaces, exception handling, etc., or you might use AI for assistance
in code-writing, and so on. In your report, you should explain how your user interface works.
This should include details of which functionalities are included and how these are implemented in
the interface, how the user should navigate the interface, what exception handling and user input
tolerance mechanisms were included, and so on. You should explain your use of XipuAI by detailing
clearly how it helped you create the interface, which aspects you used it for, and so on. Remember
that you do not have to blindly accept all AI output as inherently correct: critical reflection on
AI  s answers and suggestions will be welcome.
The marking for this section of the report will be broken down into 4 marks for the explanation
of the user interface and 4 marks for your use of AI tools. This section should be no more
than two pages in length, screenshots excluded. You should attach the entire transcript of your
conversation(s) with XipuAI in an appendix to the report (you can save the entire conversation for
example by clicking the   Export   button in the interface below).
3 Submission instructions
In the dedicated   Coursework 3 submission   Assignment activity on the Learning Mall Online, you
will need to submit the following two (2) documents.
? A single ZIP archive of your entire NetBeans project. Include all the resources your
project needs to run. This file should be named   CPT206 CW3 Project studentId.zip  .
? The online Javadoc API documentation file of your BudgetManager class, as specified in
Section 1.5. This is the   BudgetManager.html   file generated by your project. You do not
need to rename this file.
? Your report from Section 2, including the appendix of your conversation(s) with XipuAI,
typed into e.g. a Word document, and converted into a PDF file. This file should be
named   CPT206 CW3 Report studentId.pdf  .
The submission deadline is: Sunday 18 May, 2025, at 23:59 (China-time).
4
This assignment is individual work. Plagiarism (e.g. copying materials from other sources
without proper acknowledgement) is a serious academic offence. Plagiarism and collusion will not
be tolerated and will be dealt with in accordance with the University Code of Practice on Academic
Integrity. Submitting work created by others, whether paid for or not, is a serious offence, and will
be prosecuted vigorously. The use of generative AI for content generation is permitted only in the
design and implementation of your application  s user interface, as detailed in Sections 1.4
and 2.3. No other use of generative AI for content generation is permitted on this assignment. Such
a use would be considered in breach of the University Code of Practice on Academic Integrity, and
dealt with accordingly. Individual students may be invited to explain parts of their code in person
during a dedicated interview session, and if they fail to demonstrate an understanding of the code,
no credit will be given for that part of the code.
Late submissions. The standard University policy on late submissions will apply: 5% of
the total marks available for the component shall be deducted from the assessment mark for each
working day after the submission deadline, up to a maximum of five working days, so long as this
does not reduce the mark below the pass mark (40%); submissions more than five working days
late will not be accepted.
This is intended to be a challenging task, and quite a step up from what you have been doing
so far, so think about things carefully. We can - and will - discuss some aspects in the Lab sessions,
and of course, as usual, you can ask me anything by email, during Office Hours, or in the LMO
Forums. Good luck!


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



 

掃一掃在手機打開當前頁
  • 上一篇:易得花在線解決客戶強制下款暴力催收問題AI智能全國客服電話【2025】
  • 下一篇:ECE371編程代做、代寫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在线免费观看
    国产福利视频一区| 国产精品裸体一区二区三区| 国产av熟女一区二区三区| 久久中文字幕在线视频| 欧美亚洲另类在线| 国产黄色一级网站| 亚洲伊人久久综合| 国内自拍欧美激情| 日韩一区二区av| 色综合久久久久无码专区| 97人人干人人| 综合操久久久| 国产精品专区一| 久久成人人人人精品欧| 蜜臀精品一区二区| 国产精品久久久久久影视| 欧美一区二区中文字幕| 久久久久久欧美精品色一二三四| 天天摸天天碰天天添| 7777精品久久久久久| 亚洲精品日韩激情在线电影| 国产精品一区二区免费| 国产精品久久久久av免费| 欧美日韩精品久久| 国产精品丝袜久久久久久不卡| 欧洲在线视频一区| zzijzzij亚洲日本成熟少妇| 青草热久免费精品视频| 久久久久久久久久国产精品| 日韩精品一区在线视频| 丝袜美腿精品国产二区| 欧美一区二视频在线免费观看| 日韩在线高清视频| 欧美日韩无遮挡| 国产精品日韩欧美综合| 精品一区二区三区无码视频| 欧美精品免费播放| 国产日韩欧美91| 一本二本三本亚洲码| 国产精品 欧美在线| 日韩激情免费视频| 国产精品三级久久久久久电影| 黄页免费在线观看视频| 欧美成年人在线观看| 官网99热精品| 日本在线观看天堂男亚洲| 国产高清av在线播放| 欧洲一区二区在线| 国产精品久久久久久久久久99| 国产一区二区视频播放| 亚洲一区二区免费| 久久99精品久久久久久青青日本| 日韩视频在线免费看| 国产精品网址在线| 国产欧美日韩丝袜精品一区| 亚洲一区二区三区av无码| 国产成人精品免费久久久久| 欧美久久久久久一卡四| 国产精品高潮呻吟久久av无限| 国产噜噜噜噜久久久久久久久 | 一区二区精品在线观看| 97久草视频| 日本午夜在线亚洲.国产| 久久久成人精品视频| 国产精品一国产精品最新章节| 午夜精品区一区二区三| 国产精品视频免费一区| 国产噜噜噜噜噜久久久久久久久| 日韩中文字幕在线不卡| 国产精品美女主播| 91av成人在线| 欧美亚洲黄色片| 一区视频二区视频| 色婷婷av一区二区三区在线观看| 国产日韩精品在线| 日本精品一区二区三区高清 久久| 欧美成aaa人片免费看| 91精品国产高清久久久久久91| 免费中文日韩| 亚洲www视频| 国产精品福利在线| 国产成人亚洲精品无码h在线| 国产综合18久久久久久| 日本欧洲国产一区二区| 欧美激情在线观看视频| 久久精品国产精品亚洲| 91精品久久久久久蜜桃| 国产制服91一区二区三区制服| 欧美一级视频免费在线观看| 精品不卡一区二区三区| 北条麻妃一区二区三区中文字幕| 97久久精品午夜一区二区| 欧美高清视频一区二区三区在线观看| 亚洲**2019国产| 欧美精品成人在线| 国产精品久久久久久久app| 久久99精品久久久久久久久久| 成人av免费在线看| 国产一区二区三区四区五区加勒比 | 午夜精品一区二区三区在线观看| 国产精品热视频| 久久国产精品免费一区| 91精品国产高清久久久久久| 国产男女猛烈无遮挡91| 加勒比成人在线| 日本www在线播放| 亚洲不卡一卡2卡三卡4卡5卡精品| 欧美日本高清一区| 国产精品电影网站| 国产成人生活片| 久久久久久久久电影| 久久天堂国产精品| 91久久久亚洲精品| av免费中文字幕| 国产一区二区三区免费不卡| 日本精品久久中文字幕佐佐木| 亚洲精品成人久久久998| 中文字幕日韩精品久久| 欧美精品情趣视频| 国产精品狠色婷| 国产成人精品综合| 国产成人无码av在线播放dvd| 久久av一区二区三区亚洲| 久久久视频免费观看| 国产精品999视频| 81精品国产乱码久久久久久| 91久久久久久久一区二区| www.av毛片| 91精品国产99| 分分操这里只有精品| 国产欧美日韩精品在线观看| 国产欧亚日韩视频| 国产精品一二三在线| 波多野结衣精品久久| 高清一区二区三区视频| 成人av一级片| 91精品国产高清久久久久久91裸体| 97国产在线观看| 久久青青草原| 日韩在线视频播放| 久久久精品在线观看| 欧美精品在线观看| 亚洲天堂电影网| 日本一区二区三区免费观看 | 日韩美女在线观看一区| 欧洲美女7788成人免费视频| 欧美性视频网站| 黄色高清视频网站| 国产美女搞久久| 91精品视频网站| 深夜福利国产精品| 国产精品久久久久9999小说| 欧美激情xxxx| 亚洲a一级视频| 欧美中文在线观看国产| 国模精品一区二区三区 | 国产成人看片| 国产精品美女视频网站| 中文字幕成人一区| 日本亚洲精品在线观看| 国内精品一区二区三区| 99在线国产| 久久精品99久久久久久久久 | 日本免费成人网| 欧美 日韩 国产 高清| 国产伦精品一区二区三区免| 久在线观看视频| 国产精品视频精品| 精品国产乱码久久久久久蜜柚| 亚洲在线播放电影| 欧美影视一区二区| 99在线观看视频免费| 日韩中文字幕av| 国产99久久精品一区二区 夜夜躁日日躁 | 韩国精品久久久999| 成人动漫在线视频| 久久久久亚洲精品国产| 色综合天天综合网国产成人网| 视频一区亚洲| 每日在线更新av| 91精品网站| 国产精品久久中文字幕| 欧美一区二区三区四区夜夜大片 | 欧美精品在线播放| 日本一级淫片演员| 国产欧美综合精品一区二区| 久久国产精品一区二区三区 | 久久人人爽人人爽人人片av高请| 国产精品国产亚洲伊人久久| 欧美一级免费播放| 国产欧美亚洲视频| 久久www免费人成精品| 在线观看成人av| 韩国福利视频一区| 国产成人精品国内自产拍免费看| 欧美xxxx18国产| 欧美日韩一区二区三区免费| 国产精品∨欧美精品v日韩精品| 九九精品在线视频| 欧美高清视频一区二区三区在线观看|