course.java~3~

来自「学生成绩管理系统」· JAVA~3~ 代码 · 共 31 行

JAVA~3~
31
字号
package teamwork;

/**
 * <p>Title: teamwork</p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author yeliang
 * @version 1.0
 */
public class course {

    String[] sub = new String[10];
    int[] sub_mark = new int[10];
    int num;//某一学期课程数量

    public course() {
        num = 0;
        for(int i=0;i<10;i++) sub[i] = null;
        for(int i=0;i<10;i++) sub_mark[i] = 0;
    }

    public static void main(String[] args) {
        //course course = new course();
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?