📄 course.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */import javax.swing.*;public class Course { //课程名、编号、学分、学时初始化 public Course(String cna,int cn,float cre,int time){ cname = cna; cnum = cn; credit = cre; period = time; } public void addCourse(String cname,int cnum,int period,float credit){ //courList.add(new Course(cna,cn,cre,time)); //stuList.add(new Student(gd,mj,cl,id,nam)); } public String toString(){ String s = cname+" "+cnum+" "+credit+" "+period; return s; } public float score;//学生成绩 public String cname;//课程名字 public int period ;//学时 public float credit;//学分 public int cnum; //课程编号 }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -