首页 新闻 聚焦 科技 财经 创业 综合 图片 视频

IT界

旗下栏目: 行业 生态 IT界 创新

代写COP 1000程序、代做Python

来源:互联网 发布时间:2021-06-23
代写COP 1000程序、代做Python
COP 1000 Course Project – 100 points
Due Date: Wednesday, July 29, 2020 at 11:59pm
 
 
Project Description and Requirements
 
For this project, you will be implementing a simple Department Management System.
1.You need two classes: DepartmentManagement.java, and Professor.java.
2.In class DepartmentManagement, you have the main method where you maintain a list of professors in the department. The maximum number of professors in a department is 50. 
3.For each professor, you only Care about his or her id, name, and salary, among which id can uniquely identify a professor. It is not allowed to have two professors in the same department with the same id. 
4.Make sure you follow the principle of information hiding when designing class Professor. 
5.Refer to the following given Sample Input and Output. The main menu contains a list of possible operations: 1) list all professors (show a list of all professors), 2) add a new professor (ask the user to provide name, id, and salary for a professor), 3) delete a professor (ask the user to enter the id of the professor to delete), 4) get the average salary of all professors, and 5) enter Q to quit. 
6.In class DepartmentManagement, for each primary operation in the main menu, create a separate method to handle the operation. For example, you should have a method like addProfessor that will be called to add a new professor to the list when the user enters AP or ap. 
7.You MUST follow the ground rules when writing code. Points off if not.
8.Fully test your program before submission to make sure you output strictly matches the following sample output given the same input.
 
 
Sample Input and Output: (input is highlighted in red)
 
Department Management System is running....
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
lp
Professor list is empty. Add a professor first.
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of Professors,
Q to quit
ap
Please enter professor's name: 
Joe
Please enter professor's id: 
111
Please enter professor's salary: 
1023.45
The professor you just added: name=Joe, id=111, and salary=1023.45
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
AP
Please enter professor's name: 
Seth
Please enter professor's id: 
222
Please enter professor's salary: 
3435.64
The professor you just added: name=Seth, id=222, and salary=3435.64 
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average Salary of professors,
Q to quit
LP
The professor list:
name=Joe, id=111, and salary=1023.45
name=Seth, id=222, and salary=3435.64
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
ag
The average salary is 2229.545
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
DP
Please enter the professor's id: 
555
The prof with id=555 does not exist.
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
dp
Please enter the professor's id: 
111
The prof with id=111 has been deleted.
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get Average salary of professors,
Q to quit
lp
The professor list:
name=Seth, id=222, and salary=3435.64
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a professor,
AS to get average salary of professors,
Q to quit
A
Command not supported. Try again.
 
Please enter 
LP to list all professors,
AP to add a professor,
DP to delete a Professor,
AS to get average salary of professors,
Q to quit
q
Thanks for using Department Management System!
 
请加QQ:99515681 或邮箱:99515681@qq.com   WX:codehelp
  免责声明:珠穆朗玛网对于有关本网站的任何内容、信息或广告,不声明或保证其正确性或可靠性,用户自行承担使用网站信息发布内容的真假风险。
责任编辑:珠穆朗玛网