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

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

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

時間:2025-05-08  來源:合肥網(wǎng)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程序設(shè)計
  • 無相關(guān)信息
    合肥生活資訊

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

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

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

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

          久久久久久久一区二区三区| 欧美电影在线播放| 欧美一级视频免费在线观看| 亚洲免费影视| 久久国产精品久久久| 久久香蕉国产线看观看av| 美女福利精品视频| 欧美日韩免费看| 国产精品色一区二区三区| 国产日韩欧美亚洲| 亚洲国产精品ⅴa在线观看| 日韩一级免费| 欧美呦呦网站| 欧美日本精品一区二区三区| 国产精品视频精品| 亚洲电影免费观看高清完整版| 最新国产精品拍自在线播放| 亚洲性色视频| 久久一区二区三区国产精品 | 亚洲精品日韩一| 亚洲一级免费视频| 蜜桃久久精品一区二区| 国产精品久久久久久久午夜| 在线看片第一页欧美| 亚洲一区二区三区四区五区黄| 久久av红桃一区二区小说| 欧美精选一区| 韩国av一区二区三区四区| 99re热这里只有精品免费视频| 久久本道综合色狠狠五月| 欧美日韩国产精品专区| 亚洲大片在线观看| 午夜精品在线看| 欧美性猛交xxxx乱大交蜜桃| **网站欧美大片在线观看| 亚洲一区二区三区免费视频| 欧美精品成人91久久久久久久| 国产一区欧美| 欧美一区二区三区婷婷月色| 欧美成人午夜免费视在线看片| 国产欧美日韩一区二区三区| 正在播放亚洲| 国产精品v欧美精品v日韩精品| 亚洲精品久久久久久一区二区| 久久久久亚洲综合| 国内精品久久久久影院薰衣草| 亚洲天堂第二页| 欧美视频在线观看免费| 亚洲视频在线一区观看| 欧美日韩一视频区二区| 日韩午夜中文字幕| 欧美日韩18| 99精品黄色片免费大全| 欧美区在线播放| 亚洲精品偷拍| 欧美日韩美女在线| 亚洲免费高清| 欧美视频在线不卡| 一区二区三区久久精品| 欧美特黄a级高清免费大片a级| 一本一本大道香蕉久在线精品| 欧美日本成人| 亚洲一区999| 国产伦精品一区| 久久久www免费人成黑人精品| 国产在线高清精品| 另类激情亚洲| 亚洲日本va午夜在线影院| 欧美日韩国产成人在线| 一区二区三区国产| 国产欧美日本| 久久一日本道色综合久久| 91久久精品国产91久久性色tv| 欧美日韩国产限制| 亚洲一区一卡| 136国产福利精品导航网址应用| 欧美二区不卡| 亚洲一区精品电影| 好吊色欧美一区二区三区四区| 狂野欧美激情性xxxx| 亚洲精品视频在线看| 国产九九精品视频| 免费成人高清视频| 亚洲一区二区视频在线观看| 国产偷国产偷亚洲高清97cao| 另类av导航| 亚洲天堂av图片| 一区二区三区自拍| 国产精品高潮视频| 久久亚洲精选| 国产精品99久久不卡二区| 狠狠色2019综合网| 欧美深夜影院| 你懂的亚洲视频| 亚洲欧美日韩精品一区二区| 亚洲国产精品一区二区第四页av| 国产精品国产自产拍高清av王其| 久久久久国产精品厨房| 亚洲视频专区在线| 亚洲激情视频在线观看| 国产精品欧美风情| 欧美精品日本| 久久综合伊人77777| 亚洲免费影院| 一区二区三区高清视频在线观看| 黄网站免费久久| 国产精品一区二区a| 欧美日本在线| 你懂的成人av| 久久综合九色综合欧美狠狠| 午夜激情一区| 中日韩男男gay无套| 亚洲国产mv| 国内精品嫩模av私拍在线观看| 国产精品久久毛片a| 欧美理论视频| 欧美高清在线播放| 欧美成人精品福利| 狼人天天伊人久久| 久久精品亚洲精品| 久久精品日产第一区二区| 午夜综合激情| 亚洲一级在线观看| 亚洲一区欧美| 亚洲特色特黄| 亚洲自啪免费| 亚洲综合欧美| 亚洲在线一区二区| 香蕉成人啪国产精品视频综合网| 亚洲永久免费观看| 亚洲天堂网站在线观看视频| 中文无字幕一区二区三区| av不卡免费看| 亚洲天堂激情| 午夜精彩国产免费不卡不顿大片| 亚洲一区二区三区四区中文| 亚洲一区二区三区高清不卡| 亚洲午夜精品网| 性视频1819p久久| 久久精品国产99国产精品澳门| 久久久久高清| 欧美成年人网| 欧美日韩综合另类| 国产精品人人爽人人做我的可爱| 国产精品美女久久久免费| 国产精品无码专区在线观看| 国产日韩在线播放| 尤物网精品视频| 亚洲免费电影在线观看| 一本色道久久88综合日韩精品| 一区二区三区免费网站| 亚洲欧美精品一区| 久久香蕉国产线看观看网| 男人插女人欧美| 国产精品成人在线| 国内外成人免费激情在线视频| 亚洲国产欧美日韩另类综合| 亚洲久久成人| 欧美在线观看视频一区二区| 免费看av成人| 国产精品久久久久久久久久免费看 | 久久人91精品久久久久久不卡| 美女视频黄 久久| 欧美视频在线不卡| 黄色工厂这里只有精品| 夜夜狂射影院欧美极品| 久久超碰97人人做人人爱| 欧美超级免费视 在线| 国产精品区免费视频| 亚洲高清视频的网址| 亚洲综合不卡| 男男成人高潮片免费网站| 国产精品区一区| 91久久国产自产拍夜夜嗨| 午夜视频久久久久久| 欧美国产日产韩国视频| 国产亚洲视频在线| 在线视频亚洲| 欧美大片在线看免费观看| 国产欧美 在线欧美| 日韩午夜黄色| 免费亚洲一区| 狠狠久久综合婷婷不卡| 亚洲一二三区在线| 欧美精品成人| 亚洲电影免费在线观看| 久久er99精品| 国产日韩欧美视频在线| 99视频一区二区三区| 老牛嫩草一区二区三区日本 | 欧美激情综合五月色丁香| 国产亚洲毛片在线| 亚洲欧美激情视频| 欧美日韩一区二区免费视频| 在线观看中文字幕亚洲| 久久九九热免费视频| 国产精品综合不卡av| 亚洲一区二区三| 欧美视频一区二区三区…| 日韩视频中文|