studentint.java

来自「国外的数据结构与算法分析用书」· Java 代码 · 共 20 行

JAVA
20
字号
package Interfaces;

import dslib.list.LinkedListUos;

public interface StudentInt
{	
	/**	Prompt the user for a personal access code */
	public int getNewPAC();
	
	/**	Show information about fees */
	public void showFees(double amount, double paid);

	/**	Display a list of courses for a student */
	public void showCourseList(LinkedListUos list);

	/**	Display a list a open course sections */
	public void showOpenSectionsList(LinkedListUos list);

} /* end of StudentInt */

⌨️ 快捷键说明

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