日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

代做ICS4U、代寫 java 程序語言

時間:2024-04-14  來源:  作者: 我要糾錯



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

















 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CSI 2120代做、代寫Python/Java設計編程
  • 下一篇:COMP 2049 代做代寫 c++,java 編程
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              在线一区二区日韩| 欧美无砖砖区免费| 一区二区三区视频在线观看| 国产精品一级| 欧美乱妇高清无乱码| 久久久xxx| 亚洲欧美另类在线观看| 亚洲区在线播放| 国产亚洲精品久| 国产精品高潮呻吟| 欧美全黄视频| 久久综合久久综合这里只有精品| 一本一本久久a久久精品综合麻豆 一本一本久久a久久精品牛牛影视 | 国产日本亚洲高清| 欧美日韩一区二区在线| 久色婷婷小香蕉久久| 香蕉成人啪国产精品视频综合网| 99精品国产一区二区青青牛奶| 好看的日韩视频| 国产欧美日本一区二区三区| 国产精品成人国产乱一区| 欧美激情国产高清| 欧美成人激情在线| 久久人人爽人人爽爽久久| 欧美在线三级| 欧美一区二区三区在线观看 | 亚洲伦伦在线| 亚洲人成7777| 亚洲日本国产| 亚洲乱码视频| 亚洲视频视频在线| 亚洲在线观看| 亚洲欧美日韩国产精品| 亚洲一区二区免费看| 亚洲一区高清| 亚洲欧美不卡| 欧美在线地址| 另类专区欧美制服同性| 狂野欧美激情性xxxx欧美| 久久久青草婷婷精品综合日韩| 久久久www成人免费毛片麻豆| 久久精视频免费在线久久完整在线看| 先锋影音网一区二区| 久久国产精品一区二区三区| 久久久久www| 欧美福利在线| 国产精品第一页第二页第三页| 国产精品久久久久aaaa| 国产日韩一区欧美| 伊人久久噜噜噜躁狠狠躁| 在线观看日产精品| 在线综合+亚洲+欧美中文字幕| 亚洲综合欧美日韩| 久久成人亚洲| 欧美国产日韩在线| 欧美视频在线免费看| 国产欧美一区二区三区沐欲| 狠狠爱www人成狠狠爱综合网| 亚洲国产精品传媒在线观看| 在线一区亚洲| 久久精品夜色噜噜亚洲a∨| 欧美成人久久| 国产婷婷色一区二区三区在线| 在线观看欧美视频| 中国成人在线视频| 久久躁狠狠躁夜夜爽| 欧美日韩中字| 亚洲激情欧美| 久久精品成人| 国产精品swag| 亚洲国产美女久久久久| 亚洲宅男天堂在线观看无病毒| 久久伊伊香蕉| 国产精品入口日韩视频大尺度| 在线日韩欧美| 久久se精品一区二区| 欧美日韩伦理在线免费| 黄色日韩网站| 欧美一级在线视频| 欧美日韩亚洲一区二| 影音欧美亚洲| 欧美专区福利在线| 国产精品久久久久久久久免费桃花| 黄色一区二区在线观看| 午夜国产精品视频| 欧美三级第一页| 亚洲精品中文字幕女同| 久久综合伊人| 激情久久综合| 久久精品毛片| 国产中文一区二区| 午夜视频久久久久久| 国产精品v片在线观看不卡| 91久久线看在观草草青青| 久久国产精品亚洲va麻豆| 国产精品一区在线观看| 亚洲一本视频| 欧美色区777第一页| 亚洲精品久久| 欧美日本在线看| 黑人巨大精品欧美一区二区小视频| 亚洲自拍啪啪| 国产日韩欧美一二三区| 亚洲欧美日韩成人| 国产午夜精品全部视频播放 | 欧美激情精品久久久久久免费印度| 一区二区亚洲精品国产| 久久九九免费视频| 黄色影院成人| 美日韩精品视频免费看| 亚洲第一搞黄网站| 欧美黄色网络| 亚洲网站视频| 国产一区二区高清不卡| 久久综合图片| 亚洲日韩欧美视频| 国产精品va在线播放| 欧美亚洲一区二区三区| 一区二区三区在线看| 欧美中日韩免费视频| 一区在线影院| 欧美va天堂va视频va在线| 一色屋精品视频免费看| 欧美激情亚洲另类| 亚洲欧美日韩国产另类专区| 国产亚洲a∨片在线观看| 麻豆精品一区二区综合av| 亚洲欧洲在线视频| 国产精品午夜av在线| 久久久一区二区三区| 国产中文一区二区| 欧美成人性网| 一区二区日韩免费看| 国产真实久久| 欧美天天视频| 牛牛影视久久网| 亚洲一区二区三区免费视频| 黄色成人精品网站| 欧美性理论片在线观看片免费| 欧美在线网址| 亚洲午夜精品在线| 亚洲国产精品女人久久久| 国产精品久久久| 欧美黑人在线播放| 欧美一区二区三区免费观看视频| 亚洲三级国产| 伊人一区二区三区久久精品| 欧美色另类天堂2015| 媚黑女一区二区| 欧美中文字幕久久| 宅男噜噜噜66国产日韩在线观看| 黄网站免费久久| 国产精品视频xxxx| 欧美日韩视频在线一区二区观看视频 | 欧美日韩一区在线| 欧美激情精品久久久久久免费印度 | 久久亚洲综合网| 性欧美video另类hd性玩具| 一本大道久久精品懂色aⅴ| 狠狠色伊人亚洲综合成人| 国产精品午夜av在线| 国产精品v欧美精品v日本精品动漫| 欧美a级理论片| 女人色偷偷aa久久天堂| 久久三级福利| 浪潮色综合久久天堂| 久久久精品视频成人| 久久久国产成人精品| 久久国产精品99国产| 久久精品一本| 老司机免费视频一区二区| 老牛国产精品一区的观看方式| 久久不射中文字幕| 久久精品国产亚洲高清剧情介绍| 午夜精品视频在线| 欧美亚洲网站| 欧美伊人久久| 久久久久免费视频| 美女亚洲精品| 欧美激情亚洲激情| 欧美了一区在线观看| 欧美日韩在线不卡一区| 欧美日韩视频在线一区二区| 欧美三级在线播放| 国产精品黄页免费高清在线观看| 国产精品免费视频观看| 国产精品网站视频| 国内久久婷婷综合| 亚洲精品1区2区| 亚洲无人区一区| 欧美在线欧美在线| 噜噜噜91成人网| 欧美日韩大陆在线| 国产精品入口夜色视频大尺度| 国产日韩欧美成人| 精品成人在线观看| 一本久道综合久久精品| 亚洲一区二区在| 久热这里只精品99re8久| 欧美人成网站|