Library management software

Hi Big guyz ,
My teacher gave me a project to program a library management software which i have no idea of, what i realy mean the problem is, i don't realy know how to start and end neither do i know the way my codes should be assembled. Please help me.
Last edited on
I would first research how the Dewey Decimal System works and then work from there. It should be pretty easy once you know how the system works, provided you've been keeping up in class.
@ PiMaster

I guess that's somewhat over the top


@ Lucky D

One simple approach might be:

You need

3 Objects: Librarian, Customer, Book
2 Lists: AvailableList, LoanList (containing Book)

The Librarian can add and remove Book to/from the AvailableList
The Customer can transfer a Book from the AvailableList to the LoanList and back.

That's to begin with.

Then additional action can be taken (like a timestamp when the customes has to bring the book back and so on)
Last edited on
Topic archived. No new replies allowed.