代做ICS4U、代写 java 程序语言
ICS4U: Unit 3 – Object Oriented Programming
Assignment 3 – Car Rental System (CRS)
1. General Info
You are to help CIMP to write Car Rental System (CRS). The system will be used by the system’s employee so data will not be randomly entered by customers. It has the following functionalities
• Import existing cars from a textfile that contains all the cars’ info.
• Add a single car into the system manually.
• Display cars in the system. May filter the display:
o Displaysedansonly
o Displaycoupesonly
o Displaycrossoversonly o Displayconvertiblesonly o Displayallcars
• Rent cars
• Return cars
• Exit (leave the program)
2. Program Flow
Page 1 of 12
ICS4U: Unit 3 – Object Oriented Programming
3. User Interface a) Main Screen
b) Import Cars from File
After importing, we can see all cars.
Page 2 of 12
ICS4U: Unit 3 – Object Oriented Programming
c) Add Single Car
Adding a Sedan
Adding a coupe
Adding a Crossover
Page 3 of 12
ICS4U: Unit 3 – Object Oriented Programming Adding a Convertible
When displaying all cars, it shows the new cars:
d) Display Cars
We can display all cars
We can also display a spcifici type of car (Sedan in this case)
Page 4 of 12
ICS4U: Unit 3 – Object Oriented Programming
e) Rent Car
Let’s say we want to rent the car with Car-ID 1008
We will enter the information. If it satisfy all criteria, then it goes through
The rented car in the Display screen
I may rent another car
Here’s another car rented in the Display Screen
Page 5 of 12
ICS4U: Unit 3 – Object Oriented Programming
f) Return Cars
Let’s return 1008, which driving within the allowable distance (Allowable is 1250 km, shown in Display Screen)
After returning 1008, that row is clear. However it shows that the car’s mileage went up by 1000.
Now let’s return 1457, but drove more than allowable distance
Then it will calculate the penalty and show it on screen.
Page 6 of 12
ICS4U: Unit 3 – Object Oriented Programming
4. UML Diagram
Here’s the UML diagram of the program. Your program must follow the same structure.
Page 7 of 12
ICS4U: Unit 3 – Object Oriented Programming
5. Text File & Database
The program comes with a text file called CarList.txt, that contains some dummy car information. You may import it into the garage, so that you may test your program easily. The columns are separated by a colon “:”
Example of the textfile:
0:Honda:Civic:Good on Gas
1:Toyota:Supra:false
2:Mazda:CX-5:5
3:BMW:Z4:15.4
0:Toyota:Corolla:Top Safety
0:Audi:A4:Luxurious
1:Nissan:GT-R:false
1:BMW:440i:true
2:Lexus:GX460:8
3:Mazda:MX-5:7.6
Column 1: Column 2: Column 3: Column 4:
Note:
Car Type. Refer to Car class to see the values and their corresponding car type. Car maker. This is the company that makes the car
Car model. The name of the car.
The special information specific to a car type:
- Sedan
- Coupe
- Crossover
- Convertible
Special information about the car
If it contains back seats
Number of seats it has
Time to open the soft(or hard) top in seconds
The Car-ID is not in the textfile, because your program should automatically generate it when a new car is added.
Extra – For those who wants to understand the code inside Database.java (NOT REQUIRED): For more information on how to work with .txt using Java, please refer to the following websites:
• https://www.geeksforgeeks.org/different-ways-reading-text-file-java/ • https://www.javatpoint.com/java-bufferedwriter-class
6. More Information a) Database
The Database will store all of the Car objects in an array. We haven’t learnt how Array of Objects work, but assume it’s similar to storing any normal data type in an array.
b) Car ID (ID)
Each car will have a unique Car ID. Each new car going into the system will have a randomly generated ID assigned to them. The range is between 1000 – 1999, therefore only 999 cars can be stored into the system.
Page 8 of 12
ICS4U: Unit 3 – Object Oriented Programming
c) Different Car Types
The system only has 4 types of parcel: Sedan, Coupe, Crossover and Convertible
Each type has their own type specific Extra Info and formula in calculating the Allowable Distance and the Extra Distance Penalty Fee. Please refer to the following table:
Type Extra Info
Special Info – Describes what special features the sedan has.
If the coupe has a back seat or not.
The number of seats the Crossover has.
The time it takes (in seconds) to open/close the convertible top.
If the renter did not exceed the allowable distance, then there’s no fee. If it exceeds, here’s the table:
They are represented by an integer. May refer to Parcel class to find the values.
Sedan = 0 Coupe = 1 Crossover = 2 Convertible = 3
However, when displaying parcels in the table format, it is shown as:
Sedan = “SED” Coupe = “CPE” Crossover = “XOR” Convertible = “CVT”
Sedan
Coupe
Crossover
Convertible
Allowable Distance
Extra Distance Fee Formula
Type
Sedan
= ⌊
× 250⌋ • = 1.25 ×
Coupe
= ⌊
× 100⌋
Note: ⌊@⌋ system means round down to the nearest integer.
Has backseat:
= 74× +20
= 74× +35 =2× +25,%≤6
=2× +45,%=78
= 1 ×( ))+55,%>8 30
No backseat:
Crossover
= ⌊ ! × (
× 150)⌋
Convertible
if the car is being rented for less than 5 days, then
= 500
if the car is being rented for more than or equals to 5 days, then
= + 5
× 400,
And the renter will get 5 days bonus (Calculation doesn’t include the bonus 5 extra days)
= 2-...//(0123456789.): + (750 − 25.5 × sec) where ? = time in seconds to open/close top
Page 9 of 12
ICS4U: Unit 3 – Object Oriented Programming
7. Working with Date class
This assignment, you will be using the Date class and calculate the due date. The following are some links you will need to research a bit on yourself:
Parsing and Formatting Dates in Java
http://tutorials.jenkov.com/java-date-time/parsing-formatting-dates.html
Add days to current date
https://www.mkyong.com/java/java-how-to-add-days-to-current-date/
Convert Date to String
https://www.javatpoint.com/java-date-to-string
Convert String to Date
https://www.javatpoint.com/java-string-to-date
Constructors and Methods in Date class
https://www.tutorialspoint.com/java/java_date_time.htm
https://docs.oracle.com/javase/7/docs/api/java/util/Date.html
8. Requirements
• Do not change the Database class. If Database is changed and program cannot be compiled, then you will get zero.
• Must use the Database class to help you store and access the data. Read the JAVA DOCS (Comments) to help you understand how to use each method inside the Database class. Just understand the method header is enough. It is not necessary to understand what is happening inside each of the method.
• Program must follow the program flow chart and UML diagram.
• Do not create extra classes
• Do not create extra public methods (except helper methods in CRS class)
• Must complete all template methods and the main methods.
• Each class must be in its separate file to improve readability and maintainability.
• Do not use anything that’s not taught in Unit 1-3 (Eg: ArrayList, LinkedList, 2D-Array, etc.)
• Must create extra helper methods (Part of the marking scheme)
• Must follow Front-End and Back-End design. (Except DisplayCar() method in CRS)
• Must utilize Polymorphism correctly (Program may still work without using Polymorphism at all)
9. Error Checking
• Must check if options entered are valid.
• Must check if ID entered are valid (exist or not).
• Must check Car Type is valid
• Must check number of days is valid (positive)
• Must check distance is valid (0 or positive)
• Assume when creating a new car, Extra Info will always be valid values.
• Assume options entered will always be the correct data type (Eg: If the Scanner is expecting an int, I will
not enter a string)
• If user entered info is wrong, it will go back to the main screen. Program will NOT repeatedly ask for the
correct info.
Page 10 of 12
ICS4U: Unit 3 – Object Oriented Programming
10. Provided Templates and Files to Submit
Provided Code & Template
Files to submit
Do not submit the following
Car.java
Convertible.java Coupe.java
Crossover.java CRS.java
CRSMain.java
Database.java
Sedan.java
CarList.txt
Car.java
Convertible.java Coupe.java
Crossover.java CRS.java
CRSMain.java
Sedan.java
Database.java
CarList.txt
Any.class or.java~
11. Note
You may write as many or as little code. However, try to aim for my benchmark. My sample code (excluding Database.java) contains 869 lines of code
The templates contain a total of 235 lines of code already.
You just need to write 633 lines of code to complete this assignment.
Working with friends is highly encouraged, and may share ideas. However no sharing of code. There are
programs that can check the program’s similarity, and I can see who are copying programs.
Page 11 of 12
ICS4U: Unit 3 – Object Oriented Programming
12. Marking Scheme: Checklist
Knowledge
Items
Created and Used Methods correctly
Used Classes and Objects correctly
HaveInheritance
HaveEncapsulation
HavePolymorphism
Displayinfocorrectly
Program loops correctly between Menu and Screens Usedmaterialnotfromlesson
Application
Items
AddCar(Object)
RentCar() is working
ReturnCar() is working
DisplayCar() is working
DisplayCar(int) is working Usedmaterialnotfromlesson
Thinking
Your Mark
Out of 4
4
4
4
4
4
4 -14 28
Out of 5 12
9
1
3 -15 30
Out of 4
4
4 4 8 4 8 4 -20 40
Out of 4
4
4
4
4
4 24
Knowledge Total:
Application Total:
Your Mark
Your Mark
Items
Created Global Constant variables and used them correctly/efficiently
(minimum 5)
Created Non-1 Line Helper Methods and used them correctly/efficiently
(minimum 2)
Applied Inheritance Efficiently/Correctly
Applied Encapsulation Efficiently/Correctly
Applied Polymorphism Efficiently/Correctly
Followed UML diagram design
Followed Frontend & Backend Design
Check invalid input
Used material not from lesson
Communication
Items
HaveJAVADOCforHelperMethodsthatyoucreated Correct Method & Variable naming convention
Comments in code
CodeIndentation
ClearUserInterface
Appropriatewarningmessages
Thinking Total:
Communication Total: PERCENTAGE:
请加QQ:99515681 邮箱:99515681@qq.com WX:codinghelp
- 道通智能新品行业应用无人机Autel Alpha发布,旗舰性能全面升级
- 代写CSci 4061 MultiThreaded Image
- “人工心脏”仅核桃大小,植入男子心尖后重获新生
- 深化合作 共研共创 新点软件出席华为中国合作伙伴2024
- Ins引流工具,Instagram营销软件,助你实现市场吸粉领先!
- ins批量群发秘籍!Instagram 2024最新群发软件推荐,Ins引流轻松搞定!
- 电报群发最强引流软件,Telegram自动拉群发工具/TG营销引流
- instagram最好用的群发软件推荐,ins营销推广引流工具
- 聚力共赢“胶”好运!漱玉平民&东阿阿胶大型融媒体溯源直播活动成功举行
- ins群发营销软件,ins营销软件,协议操作自动发送日日爆粉
- Ins私信群发神器,Instagram注册工具一键购买平台!
- 个人轻松,企业高效! 跨境电商LINE代拉群群发软件,您营销成功的得力助手
- Ins群发脚本助手,Instagram一键群发工具,让你打造营销新格局!
- 代做ELEC 292、代写Python/c++编程设计
- 联想经营数据出炉,再次交出“年终答卷”
- 业务大咖心语 通过WhatsApp拉群营销工具 我业务效果的神奇转变
- 西牛皮防护膜为金属屋面防水防护给出新答案
- 虚拟奇兵 科技魔法师如何借助WhatsApp拉群营销工具打破常规的数字奇迹
- 精准找客户:WhatsApp协议号注册器助力工程师轻松分配标识!
- Telegram协议号注册器,WS智能推广工具,带您走向网络通信的新高度
- 中国环保设备门户:引领绿色未来,共创美好家园
- Curia Receives 2024 CDMO Leadership Award
- 情感共振 WhatsApp拉群营销工具用心打造每个用户的个性化体验之旅
- 代做Multicore Computing、代写JAVA编程设计
- 绿色国际:构建绿色生态,共创美好未来
- 外贸新手体验 WhatsApp拉群营销工具如何点燃我的好奇心
- 从沟通零基础到外贸达人 WhatsApp拉群神器帮我拆除语言障碍
- 忆联再次以第一成交候选人入围中国移动SSD硬盘AVAP项目
- 电报自助群发拉群软件,Telegram智能采集群发系统/TG营销优化
- 北京大学夺冠!ECI Young 首届大学生数字(营销)创新大赛圆满落幕
推荐
- 老杨第一次再度抓握住一瓶水,他由此产生了新的憧憬 瘫痪十四年后,老杨第一次再度抓握住一瓶水,他 科技
- B站更新决策机构名单:共有 29 名掌权管理者,包括陈睿、徐逸、李旎、樊欣等人 1 月 15 日消息,据界面新闻,B站上周发布内部 科技
- 疫情期间 这个品牌实现了疯狂扩张 记得第一次喝瑞幸,还是2017年底去北京出差的 科技
- 全力打造中国“创业之都”名片,第十届中国创业者大会将在郑州召开 北京创业科创科技中心主办的第十届中国创业 科技
- 苹果罕见大降价,华为的压力给到了? 1、苹果官网罕见大降价冲上热搜。原因是苹 科技
- 升级的脉脉,正在以招聘业务铺开商业化版图 长久以来,求职信息流不对称、单向的信息传递 科技
- 创意驱动增长,Adobe护城河够深吗? Adobe通过其Creative Cloud订阅捆绑包具有 科技
- 如何经营一家好企业,需要具备什么要素特点 我们大多数人刚开始创办一家企业都遇到经营 科技
- 丰田章男称未来依然需要内燃机 已经启动电动机新项目 尽管电动车在全球范围内持续崛起,但丰田章男 科技
- 智慧驱动 共创未来| 东芝硬盘创新数据存储技术 为期三天的第五届中国(昆明)南亚社会公共安 科技