/* Tuesday am lecture - Part 1: +---------------+ | Book | +---------------+ | String title | | String author | | Num cnum | +---------------+ */ // to represent a book class Book{ String title; String author; int cnum; Book(String title, String author, int cnum){ this.title = title; this.author = author; this.cnum = cnum; } } // to represent examples for the Book class class Examples{ Examples(){} Book alice = new Book("Alice", "LC", 234); Book glass = new Book("TTLG", "LC", 345); Book cathat = new Book("Cat in a Hat", "Seuss", 777); }