package terminaltask;
public class Library {
public static void main(String[] args) { // TODO Auto-generated method stub
Library book = new Library();
int pa = book.read(300);
System.out.println(pa);
}
public int read(int pages)
{
return pages;
}
}
out put --300
The above is the detailed content of Library Task. For more information, please follow other related articles on the PHP Chinese website!