您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

20 行
241 B

  1. /*
  2. * Written by : Bin Hong Lee
  3. * Last edited : 4/27/2016
  4. */
  5. class Main
  6. {
  7. static BookFactory books = new BookFactory();
  8. public static void main(String[] args)
  9. {
  10. }
  11. public static void newBook()
  12. {
  13. books.newBook();
  14. }
  15. }