The Review For PostGraduate No.17

I thought that we will programming today but the teacher just showed us how to program.It was still exciting for me beause I am really interested in flushbonading.

And our teacher did not let me down.He taught us modularity programming and programed a simple driver for led under the linux environment using command.I know this well because I used to install OpenWrt on HiWifi router last winter vacation.And I also use Putty and shell command.Maybe I can ask him for help in the future.Finally,he taught us how to make a great curriculum vitae in order to find a job easier.It is very useful too.

I planed to finish the Mind map for higher mathematics tonight.But I fell asleep in 19:00 and when I wake up it was 21:00.So I just read some news and bought a jack because I need to use computer in study room.The jack is very cheap because it is second-hand but it does not matter.

Tomorrow I will wake up at 5:00 with no hesitate and then learn the new words.It has been a long time since I learn the words.In the morning,I will finish the mind map for higher mathemetics.In the afternoon,I will try to finish the mind map for linear algebra and probability theory.In the evening,I will start watching the video for math.I have downloaded it using my router.

Our operating system teacher give us a saying:It is not losing at the beginning but losing the forward direction that really matter.Maybe I did something wrong in the past and then I suffered a lot,But I will never give up and follow my heart forever.

查看原文:http://colorfulshark.cn/wordpress/pubmed-17-1108.html
补全以下代码private String cid;// Course id, e.g., CS110. private String name;// Course name, e.g., Introduce to Java Programming. private Integer credit;// Credit of this course private GradingSchema gradingSchema; //Grading schema of this course // enum GradingSchema{FIVE_LEVEL, PASS_FAIL} private Integer capacity;// Course capacity. private Integer leftCapacity;// Course capacity left. You should update the left capacity when enrolling students. private Set<Timeslot> timeslots;// One course may have one or more timeslots. e.g., a lecture in Monday's 10:20-12:10, and a lab in Tuesday's 14:00-15:50. public Course(String cid, String name, Integer credit, GradingSchema gradingSchema, Integer capacity) // constructor public void addTimeslot(Timeslot timeslot) //Record a timeslot for this course private Integer id;// A unique student id, should be an 8-digit integer: Undergraduates' ids should start with 1; Postgraduates' ids should start with 3. e.g., 12213199. private String name;// Student’s name private Map<Course, Grade> courses;// Enrolled courses, using Map structure to store course and its grade as a pair. Grade is an enum type enum Grade{PASS,FAIL,A,B,C,D,F}with an attribute: Double gradePoint protected Student(Integer id, String name) // constructor public abstract boolean canGraduate() // Checks if this student satisfies all the graduating conditions. Hint: you are allowed to change this abstract method into non-abstract to check if the student satisfies the common graduation conditions. public void enroll(Course course) // Tries to enroll the course, do some checks before enrolling. public void recordGrade(Course course, Grade grade)// Records the grade of a course that is current learning. public double getGpa() // Calculates the GPA for this student. public UndergraduateStudent(Integer id, String name)// constructor public boolean canGraduate() //Additional graduating conditions for undergraduate students public PostgraduateStudent(Integer id, String name)// constructor public boolean canGraduate() //Additional graduating conditions for postgraduate students
06-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值