package book;
import book.CategoryList;
import java.util.Scanner;
public class index {
public static void main(String[] args) {
System.err.println(" 1、类别列表");//CategoryList
System.err.println(" 2、添加类别");//AddCategory
System.err.println(" 3、图书列表");//BookList
System.err.println(" 4、添加图书");//AddBook
Scanner sc=new Scanner(System.in);
System.err.println("请输入指令");
String str=sc.nextLine();
System.err.println(CategoryList());
}
private static char[] CategoryList() {
// TODO Auto-generated method stub
return null;
}
}