← 返回 amazon 的题目列表Object-Oriented Design Challenge
类型:online_judge
Design a simple library management system. The system should be able to add books, issue books, return books, and track the availability of books. Please specify the class design, including class names, attributes, and methods, and provide an example.
Example
Input
add(Python 101)
check(Python 101)
issue(Python 101)
check(Python 101)
return(Python 101)
check(Python 101)