https://open.kakao.com/o/s3aMpbA 이번에는 외국대학굔데 어디학굔지는 모른다. java의 기초를 요구하는 과제였다. 요구사항은 아래에 문제가 총 3갠데 1번, 2번, 3번 중 2번 3번만 의뢰했다 실행영상을 찍기 귀찮기도 하고 영상으로 찍을것도 없어서 그냥 코드를 올린다. class Book { int id; String author; String title; int noOfPages; boolean fiction; public Book(int id, String author, String title, int noOfPages, boolean fiction) { this.id = id; this.author = author; this.title = title; this.noOfPages = noOfPages; this.fiction = fiction; } @Override public String toString() { return "id:" + id + ", Title:" + title + ", Author:" + author + ", No. of pages:" + noOfPages + ", Fiction:" + fiction; } } public class BookStore { public static void main(String[] args) { Book[] books = new Book[10]; books[0] = new Book(10,"The Red Sari","Javier Moro",102,false); books[1] = new Book(4,"...