/* 「授業表」の定義 */
public class ClassTable{

	int no;		// 時限
	String subject; // 科目名
	String room;	// 教室名
	
	/* 各項目を表示する操作 */

}

// 第３講その２			