久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

CS 213代做、Java設計編程代寫

時間:2024-03-20  來源:  作者: 我要糾錯



CS 213 Spring 2024 Project #2 – 1

Due Date
Monday, February 26, @11:59pm.
Submission
1. Zip your project folder and submit the zipped file to Canvas. The zipped file must include the following items.
 Source folder src, containing the Java files (*.java) [120 points]
(a) MUST create a Java package to hold the source files; MUST use all lowercase letters for the package
name; you will lose 2 points if this is not done properly.
(b) MUST include the @author tag in the comment block on top of EVERY Java class and put the name(s)
who implemented the Java class, or you will lose 2 points.
 JUnit test classes
(a) Date class, test the isValid() method. [15 points]
(b) MemberList class, test the add() and remove() methods [20 points]
 Class Diagram [10 points]
 Javadoc folder, including all the files generated. [5 points]
2. The submission button on Canvas will disappear after February 26, 11:59pm. It is your responsibility to ensure
your Internet connection is good for the submission. You get 0 points if you do not have a submission on
Canvas. Submitting the project through the email will not be accepted.
Project Description
A fitness club owns the studios at 5 different locations in the central New Jersey area as listed below.
Bridgewater, 08807, Somerset County
Edison, 08837, Middlesex County
Franklin, 08873, Somerset County
Piscataway, 08854, Middlesex County
Somerville, 08876, Somerset County
Your team will develop a software to help the fitness club manages the memberships and class schedules. The
software is an interactive system where the users enter the command lines on the terminal and the system displays
the information on the terminal after the users hit the enter key. A command line specifies the operation the user
wanted to perform and includes the data tokens required to complete the operation. An operation code is a single
character or two-character command in uppercase letters. The operation code and the data tokens will be delimited
by one or more spaces in a command line. Operation codes are case-sensitive, which means operation codes with
lowercase letters should be rejected by the system. The software shall provide the functionality of adding and
removing members, managing the attendance of the fitness classes, generating the billing statements, and displaying
membership information in a specified order.
The fitness club currently offers 3 membership options – basic, family, and premium. Members must be 18 or older
to join. There are 3 types of fitness classes, Pilates, Spinning and Cardio, being offered at different studio locations.
Members with the basic membership can only attend the classes offered at the home studio. Members with family
and premium memberships can attend the classes offered at any studio location. Anyone holding a guest pass can
only attend the fitness classes held at the home studio. The software shall run the membership fee dues for all the
members. The fee schedules are listed in the table below.


 2
Membership Type Fee Schedule Fitness Class Attendance
Basic
 $39.99, per month
 billed monthly
 additional charge of $10 per
class exceeding 4 classes
 home studio only
 no guest pass
 4 classes per billing cycle
Family  $49.99 per month,
 billed quarterly (3 months)
 Any studio location for the member
 Home studio only for the guests
 1 guest pass at anytime
Premium
 $59.99 per month
 billed annually with one month
free (pay 11 months)
 Any studio location for the member
 Home studio only for the guests
 3 guest passes at anytime
There are 5 instructors teaching the classes, including Jennifer, Kim, Denise, Davis, and Emma. The fitness club will
provide the class schedule in a text file. This allows the change of schedule independent to the software. Currently,
fitness classes are regularly offered every day in the morning, afternoon, and evening, at 9:30, 14:00 and 18:30,
respectively. Each fitness class can be uniquely identified by the class name, instructor, and studio location. The
system shall load the class schedule from a text file classSchedule.txt and load the historical member information
from the text file memberList.txt. The system shall support the following operation codes (commands.)
 When adding a new member, the system shall create a profile for a new member with the first name, last name,
and date of birth. The profile can be used to uniquely identify the member. There are 3 different add commands.
o AB, to add a member with Basic membership, followed by member’s first and last name, date of birth, and the
location (in city name) of the home studio. Below is a sample command line for adding a member with a Basic
membership. The system shall set the expiration date to 1 month later, e.g., if today is 3/31, the expiration date
is 4/30, the last day of next month. The expiration date depends on the date when you are adding the member.
AB April March 3/31/1990 Piscataway
The date is given in a mm/dd/yyyy format. The names and locations are NOT case-sensitive, that is, April
March and april march are the same person if the dates of birth are also the same; PISCATAWAY and
Piscataway represent the same location. Your software shall not add the member to the database if the data
tokens in the command line have the following conditions.
1. Any date that is not a valid calendar date.
2. The date of birth is today or a future date.
3. A member being added is less than 18 years old. Note, the system checks the birthday month only, e.g., if
today is 2/6/2024, dob 2/28/2006 is considered as eligible, but dob 3/1/2006 is not eligible.
4. An invalid city name has been entered, that is, the studio location doesn’t exist.
5. The member is already in the member database.
6. Not enough data tokens to complete the operation.
o AF, to add a member with Family membership to the member database. Check all conditions listed above. The
expiration date should be set to expire 3 months later.
o AP, to add a member with Premium membership to the member database. Check all conditions listed above.
The expiration date should be set to expire one year later.
 C, to cancel the membership and remove the member from the member database. Since the system checks the
date of birth when adding a member, it doesn’t check the dob when removing a member. However, the member
being removed may not exist in the database. Sample command line: C Paul Siegel 5/1/1999
CS 213 Spring 2024 Project #2 – 170 points 

 3
 S, display the class schedule with the current attendees. Each fitness class shall include the class name, instructor’s
name, the time of the class, and the list of members/guests who have registered. For simplicity, we abstract away
the complexity of tracking the dates of the class schedule. That is, the system does not maintain the dates of the
class schedule, only shows the “current” class schedule.
 Printing the list of members in the member database.
o PM, to display the members sorted by member profiles, i.e., last names, then first names, then dates of birth.
o PC, to display the members sorted by county names, then zip codes.
o PF, to print the members with the membership fees. For simplicity, assume the membership fees are for the
next billing statement, regardless of the membership expiration dates.
 R, to take attendance of a member attending a class and add the member to the class, including the class name,
instructor, and member profile, for example:
R cardio Jennifer somerville Roy Brooks 12/8/1977
The system shall not add the member if the following conditions exist. Check in the order of the data tokens.
o The class name does not exist.
o The instructor does not exist.
o The studio location does not exist.
o The member is not in the member database.
o The membership expired.
o The fitness class in not on the class schedule.
o Member with Basic membership can only attend the classes held at the home studio.
o Time conflict – member is currently in a class held at the same time.
o Member is already added to the class schedule.
 U command, to remove a member from a class, for example, U Pilates Mary Lindsey 12/1/1989
Since the system checks the conditions when adding the member, it shall only check if the member is in the class
to remove.
 RG, to take attendance of a guest attending a class and add the guest to the class. The system does not maintain
guest information. Therefore, the system checks all the conditions in the R command, EXCEPT time conflict. In
addition, the system checks the restrictions of the associated membership, including the home studio location and
the number of guest passes allowed. Below is a sample command line to add a guest of Jonnathan Wei to a class.
RG cardio Davis bridgewater Jonnathan Wei 9/21/1992
 UG, to remove the guest from a class: UG pilates davis Edison Jerry Brown 6/30/1979.
The system shall not remove the guest if the guest is not in the class, or the fitness class does not exist.
 Q, to stop the program execution and display "Studio Manager terminated.", so the user knows that
your software has stopped running normally.
Project Requirement
1. You MUST follow the Coding Standard posted on Canvas under Week #1 in the “Modules”. You will lose points
if you are not following the rules.
2. You are required to follow the Academic Integrity Policy. See the Additional Note #14 in the syllabus. If your
team uses a repository hosted on a public website, you MUST set the repository to private. Setting it to public is
considered as violating the academic integrity policy. The consequences of violation of Academic Integrity Policy
are: (i) your group receives 0 (zero) on the project, (ii) the violation is reported, (iii) a record on your file
of this violation.
CS 213 Spring 2024 Project #2 – 170 points 

 4
3. Test cases for grading are included in the file Project2TestCases.txt and the associated output is in the file
Project2ExpectedOutput.txt. Your project should be able to read the test cases from console in the same order
with the test cases provided in Project2TestCases.txt, line by line without getting any exceptions. Your program
should be able to ignore the empty lines. The graders will run your project with the test cases in
Project2TestCases.txt and compare your output with the expected output in Project2ExpectedOutput.txt. Note
that, the expiration dates in Project2ExpectedOutput.txt were generated on the day I ran the project. The
expiration dates you generated should be different. The data used this project are not associated with any realworld entity and they are created solely for testing purpose.
4. You will lose 2 points for each output not matching the expected output, OR for each exception causing your
project to terminate abnormally. You MUST use the Scanner class to read the command lines from the standard
input (System.in), DO NOT read from an external file, except memberList.txt and classSchedule.txt, or you
will lose 5 points.
5. Each source file (.java file) can only include one public Java class, and the file name is the same with the Java
class name, or you will lose -2 points.
6. Your program MUST handle bad commands; -2 points for each bad command not handled, with a maximum of
losing 6 points.
7. You are NOT allowed to import any Java library classes, EXCEPT the Scanner, File, StringTokenizer,
Calendar, DecimalForamt, and Java Exception classes. You will lose 5 points for each additional Java library
class imported, with a maximum of losing 10 points.
8. You are NOT allowed to use the Java library class ArrayList anywhere in the project OR use any Java library
classes from the Java Collections, or you will get 0 points for this project!
9. When you import Java library classes, be specific and DO NOT import unnecessary classes or import the whole
package. For example, import java.util.*;, this will import all classes in the java.util package.
You will lose 2 points for using the asterisk “*” to include all the Java classes in the java.util package, or
other java packages, with a maximum of losing 4 points.
10. You must define the classes below with the specified inheritance relationships. -5 points for each class missing,
or incorrect inheritance structure.
 Member class defines the common instance variables and instance methods of the subclasses. See the
details of this class in the requirement #12 below.
 Basic class extends the Member class and includes the instance variable private int numClasses;
to keep track of the number of classes attended so far; must override the bill() method, or lose 3 points.
 Family class extends the Member class and includes the instance variable private boolean guest;
to keep track of the guest pass; must override the bill() method, or lose 3 points.
 Premium class extends the Member class and includes the instance variable private int guestPass;
to keep track of the guest passes; must override the bill() method, or lose 3 points.
11. Polymorphism is required, i.e., dynamic binding for the equals(), compareTo(), toString(), and the bill() method
or you will lose 10 points.
12. In addition to the classes in #10, you are required to include the Java classes below, or -5 points for each class
missing. You must always add the @Override tag for overriding methods, or -2 points for each violation. All
instance variables must be “private”. You cannot add additional instance variables or change the method
signatures for the methods listed or -2 points for each violation. You CANNOT perform read or write with
Scanner or System.out in all classes, EXCEPT the user interface class StudioManager.java, and the print()
methods in the MemberList and Schedule class or you lose 2 points for each violation, with a maximum of 10
points off. The floating-point numbers must be displayed with 2 decimal places or -1 point for each violation.
CS 213 Spring 2024 Project #2 – 170 points 

 5
(a) Member class.
 public class Member implements Comparable<Member> {
 private Profile profile;
 private Date expire;
 private Location homeStudio;
public double bill() { } //return the next due amount
 }
 Location is a Enum class defining the studio locations listed in Page #1 of this document.
 Reuse the Date class in Project 1.
 Profile class must be defined as follows. Must override equals(), toString() and compareTo() methods,
cannot add or change the instance variables, or -2 points each.
public class Profile implements Comparable<Profile>{
 private String fname;
 private String lname;
 private Date dob;
 }
 You must implement compareTo() method and override equals() and toString() method -2 points for
each violation. The toString() method returns a textual representation of a member in the following format.
Jane:Doe:5/1/1996, Membership expires 6/2/2024, Location: EDISON, 08837, MIDDLESEX
(b) MemberList class. This is an array-based implementation of a linear data structure to hold a list of member
objects. An instance of this class is a growable list with an initial array capacity of 4, and it automatically
increases the capacity by 4 whenever it is full. The list does not decrease in capacity. An instance of this
class can hold a list of members with different types of membership.
 public class MemberList {
 private Member [] members; //holds Basic, Family, or Premium objects
 private int size; //number of objects in the array
 private int find(Member member) { }
 private void grow() { }
 public boolean contains(Member member) { }
 public boolean add(Member member) { } //add to end of array
 public boolean remove(Member member) { } //shift up to remove
 public void load(File file) throws IOException { }//from the text file
 public void printByCounty() { } //sort by county then zip code
 public void printByMember() { } //sort by member profile
 public void printFees() //print the array as is with the next due amounts
}
 You must implement the methods listed above, and you CANNOT change the signatures of the methods.
-2 points for each method not implemented, signature changed or not used.
 The find() method searches a member in the list and returns the index if it is found, it returns -1 if the
member is not in the list. You must define a constant identifier “NOT_FOUND” for the value -1.
 The remove() method remove a member from the list. This method maintains the relative order of the
members in the list after the remove, -3 points if this is not done correctly.
 You must use an in-place sorting algorithm to rearrange the order of member objects in the array. That
is, no additional array can be declared for sorting, or you will lose 10 points. You must write code to
implement the algorithm. You CANNOT use Arrays.sort() or System.arraycopy() or any other Java
library classes for sorting. You will lose 10 points if you do.
CS 213 Spring 2024 Project #2 – 170 points 

 load() method loads the list of members from a text file.
(c) Schedule class. An instance of this class holds a list of fitness classes loaded from the text file
classSchedule.txt. You cannot add or change the instance variables, and must implement the load()
method or -2 points each violation. You can add constructors and methods.
public class Schedule {
 private FitnessClass [] classes;
 private int numClasses;
 public void load(File file) throws IOException { }
}
(d) FitnessClass class. An instance of this class holds the information of a fitness class and the attendees for
members and guests. You cannot add or change the instance variables, or -2 points each.
public class FitnessClass {
 private Offer classInfo;
 private Instructor instructor;
 private Location studio;
 private Time time;
 private MemberList members;
 private MemberList guests;
}
 Offer is a Enum class to include 3 types of fitness classes: Pilates, Spinning, and Cardio.
 Instructor is a Enum class to include the 5 instructors.
 Time is a Enum class. You cannot add change the constant values, or -2 points each.
public enum Time {
 MORNING (9, 30),
 AFTERNOON (14, 0),
 EVENING (18, 30);
}
(e) StudioManager class
 This is the user interface class to process the command lines. An instance of this class can process a single
command line or multiple command lines at a time. You will lose 10 points if it cannot process multiple
command lines at a time.
 This class should handle all possible Java exceptions thrown by the backend classes, or -5 points each
violation for handling the exceptions in the backend classes.
 When your project starts running, it shall load the 2 text files first, and then display "Studio Manager
is up running...”. so, the user knows the software is ready to read the command lines. It should
continuously process the command lines until the “Q” command is entered. The system displays "Studio
Manager terminated." and then terminates the project execution.
 You must define a public void run() method to process the command lines. You will lose 5 points
if the run() method is missing. You MUST keep this method under 40 lines for readability, or you will
lose 3 points.
(f) RunProject2 class is a driver class to run your Project 2. The main method will call the run() method in
the StudioManager class.
public class RunProject2 {
 public static void main(String[] args) {
 new StudioManager().run(); }
}
CS 213 Spring 2024 Project #2 – 170 points 

 7
13. JUnit test classes. Write code to test the following methods.
 Date class – isValid() method in the Date class, 5 invalid cases, 2 valid cases. You can reuse the test cases
you have in the testbed main() from Project 1.
 MemberList class
o add() method – 3 true cases and 3 false cases for adding Basic, Family and Premium.
o remove() method – 1 true case and 1 false case for removing a random member.
14. Class Diagram. Create a class diagram to document your software structure for Project 2. Hand-drawing the
diagram is not acceptable, and you’ll lose 10 points. You can follow the links below to create a class diagram
online and save it to your device as a picture, which can be included in your submission. You can also use other
UML tools if you like. For each rectangle (class), include ONLY the instance variables and public methods. NO
need to include the constants and private methods. DO NOT INCLUDE the JUnit test classes, the Java library
classes and RunProject2 class in the diagram.
 http://draw.io/  Create New Diagram  UML  Class Diagram
 https://online.visual-paradigm.com/app/diagrams/  Create New  Class Diagram
15. You are required to generate the Javadoc after you properly commented your code. Your Javadoc must include
the documentations for the constructors, private methods, and public methods of all Java classes. Generate the
Javadoc in a single folder and include it in the zip file to be submitted to Canvas. Please double check your
Javadoc after you generated it by opening the index.html file in the folder, and ensure the descriptions are NOT
EMPTY. You will lose points if any description in the Javadoc is empty. You will lose 5 points for  
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 




 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CSC 172代寫、Java/C++程序設計代做
  • 下一篇:代做AST20201、代寫Java編程設計
  • 無相關信息
    昆明生活資訊

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

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

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

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    男人天堂新网址| 男人日女人逼逼| 国产传媒久久久| 手机版av在线| 欧美三级在线观看视频| 国产免费xxx| 污网站在线免费| 中文字幕无码不卡免费视频| 成人午夜视频在线观看免费| 中文字幕乱码免费| 中文字幕日韩久久| 浓精h攵女乱爱av| 男女视频一区二区三区| 女人和拘做爰正片视频| 欧美精品在欧美一区二区| 手机成人av在线| 91亚洲精品久久久蜜桃借种| 五月婷婷丁香色| 色片在线免费观看| chinese少妇国语对白| 成人免费aaa| 青青青免费在线| av日韩一区二区三区| 日韩精品久久一区二区| 9999在线观看| 最近免费观看高清韩国日本大全| 超碰在线超碰在线| 偷拍盗摄高潮叫床对白清晰| 国产不卡的av| 喜爱夜蒲2在线| 久久久天堂国产精品| 日韩在线视频在线| 我的公把我弄高潮了视频| 国产精品久久..4399| 成熟了的熟妇毛茸茸| 国内外免费激情视频| 国产又黄又猛又粗| 色网站在线视频| 99精品一级欧美片免费播放| 男女啪啪免费观看| 免费毛片网站在线观看| 日韩视频在线免费看| 污污动漫在线观看| 欧美在线a视频| 日本在线视频www色| youjizz.com在线观看| 欧美激情 国产精品| 国产一级片黄色| 久久久九九九热| 国产小视频免费| 国产精品wwwww| 波多野结衣国产精品| a级片一区二区| 久久国产成人精品国产成人亚洲 | 中文字幕第一页亚洲| 免费的一级黄色片| 日本熟妇人妻xxxxx| 国产精品嫩草影视| 小泽玛利亚av在线| 国产99久久九九精品无码| 久久撸在线视频| 久久久久久久9| 天天影视综合色| 亚洲乱码日产精品bd在线观看| 北条麻妃在线观看| 午夜激情影院在线观看| 久久这里只有精品23| 麻豆三级在线观看| 欧美高清中文字幕| 91女神在线观看| 欧美日韩成人免费视频| 亚洲天堂网站在线| 免费在线观看的av网站| 日本福利视频导航| 玩弄japan白嫩少妇hd| 欧美激情亚洲天堂| 玖玖爱视频在线| 青青青在线视频播放| 男人的天堂最新网址| 成人午夜免费在线| 久久精品国产露脸对白| 动漫av网站免费观看| 在线播放 亚洲| 色婷婷综合久久久久中文字幕| 国产亚洲精品久久久久久久| 亚洲色图38p| 欧美久久久久久久久久久久久| 日本在线播放一区二区| 日韩a在线播放| 美脚丝袜脚交一区二区| aaa一级黄色片| 99视频在线视频| 欧美 日本 亚洲| 国产日产欧美一区二区| 香蕉视频999| 国产福利影院在线观看| 成年人午夜视频在线观看 | 日本a在线天堂| 九九九九九国产| 日韩在线第三页| 欧美 日韩 激情| 日韩欧美猛交xxxxx无码| 亚洲欧美日本一区二区| 天天干天天综合| 日韩avxxx| 日本免费不卡一区二区| av免费看网址| 男女日批视频在线观看| 51xx午夜影福利| 少妇高潮流白浆| 青青草久久伊人| 亚洲美女爱爱视频| 国产视频1区2区3区| 免费观看成人在线视频| 青青青在线播放| 97国产精东麻豆人妻电影| 国产日韩av网站| 精品国偷自产一区二区三区| 国产精品12p| 亚洲高潮无码久久| 国产免费xxx| 屁屁影院ccyy国产第一页| 男女裸体影院高潮| 欧美黑人在线观看| 久久亚洲a v| 2019日韩中文字幕mv| 免费看日b视频| 国产美女主播在线| 国产不卡一区二区视频| cao在线观看| 欧美日韩在线视频一区二区三区| 日日摸日日碰夜夜爽无码| 欧美亚洲精品一区二区| 国产精品丝袜久久久久久消防器材| 无码aⅴ精品一区二区三区浪潮 | 国产一区二区四区| 日韩av新片网| 免费看日本毛片| 热久久精品国产| 妺妺窝人体色www在线观看| 欧美日韩亚洲一二三| 中文字幕天天干| 天堂在线一区二区三区| 三级黄色片免费看| 国产卡一卡二在线| 国产精品久久久久久久乖乖| 青青青青草视频| 久久午夜夜伦鲁鲁一区二区| 五月婷婷六月丁香激情| 国产精品999.| 真实国产乱子伦对白视频| 久草视频这里只有精品| 2019日韩中文字幕mv| 99精品免费在线观看| 日韩av片网站| 四虎免费在线观看视频| 国产二区视频在线| 一区二区xxx| 激情图片qvod| 国产一区二区网| 亚洲视频一二三四| 久久视频免费在线| 激情伊人五月天| 欧美特级aaa| 国产a级黄色大片| 日本黄网站免费| 国产又粗又长又爽又黄的视频| 黄色a级片免费看| 亚洲狼人综合干| 男女爱爱视频网站| 欧美日韩激情视频在线观看| 欧美一级小视频| 国产真人做爰毛片视频直播| 一道本视频在线观看| 国产又黄又爽免费视频| 女人天堂av手机在线| 亚洲免费av一区| 2018国产在线| av亚洲天堂网| 激情深爱综合网| 手机av在线网站| 久草青青在线观看| 51自拍视频在线观看| 日韩中字在线观看| 在线观看免费视频高清游戏推荐| 干日本少妇视频| 丁香婷婷激情网| 久久av综合网| 色播五月综合网| 阿v天堂2017| 最新av在线免费观看| 无码人妻丰满熟妇区毛片| 9色视频在线观看| 成人一区二区三| www.国产亚洲| 色综合色综合色综合色综合| 妺妺窝人体色777777| 日韩在线一区视频| 黑森林福利视频导航| 日本黄网站色大片免费观看|