⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admininterface.java

📁 国外的数据结构与算法分析用书
💻 JAVA
字号:
package Interfaces;

/**	An administrator's interface which is an extension
	on an instructor's interface */
public class AdminInterface extends InstructorInterface
{
	/**	constructor */
	public AdminInterface(){}

	/**	Display the ADMIN menu and return the user's choice */
	public int getCommandID()
	{
		System.out.println("\n 20. Student's grades ");
		System.out.println(" 21. Class list ");
		System.out.println(" 22. Check course section enrollment");
		System.out.println(" 40. Set course-sections enrollment limit ");
		System.out.println(" 41. Assign instructor to course section ");
		System.out.println(" 42. Assign a room to a course section ");
		System.out.println(" 99. Quit");
		return (int)readInput("\n  Enter a choice : ");
	}
	
	/**	Prompt the user for an enrollement limit */
	public int getCourseLimit()
	{
		return (int)readInput("\nEnter the new enrollment limit : ");
	}
	
	/**	Prompt the user for a room */
	public String getRoom()
	{
		return readString("\nEnter a room : ");
	}
	
	/**	Prompt the user for an instructor's name and return it */
	public String getInstructorName()
	{
		return readString("\nEnter the name for the instructor : ");
	}

} /* end of AdminInterfac */

⌨️ 快捷键说明

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