public class Book
{
private String title;
private String author;
private int numpages;
public Book(int np) //np = numpages = number of pages
{
set(np);
}
public Book()
{
setBook("", "", 0);
}
}
this is what i have so far and i am stumped..i don't even know where to start..if anyone can help me, please feel free..i need all the help that i can get..thanks in advance..

New Topic/Question
Reply



MultiQuote




|