Create a system for a simple library

Assignment Help Programming Languages
Reference no: EM131321896

Assignment

Write a console application to meet the following requirements. Create a system for a simple library. The library has a name and a list of books. Each book has a title, author and an int as the id number. Define classes for both the library and the book. The library should have methods for adding a book to the library, to search for a book by title, to display information about all of the books and to delete a book (by title) from the library.

The following conditions apply to the books in the library:

1. Each book's name is unique. There are no duplicate titles. When adding a book, ensure that the title doesn't already exist. If it does exist, don't let the new book be added.

2. There is only one copy of each book in the library.

3. An author may have more than one book in the library.

Complete the code in this incomplete client designed to test the classes and their functionality. You should not change any of the other code in main.

class MainClass

{

public static void Main (string[] args)

{

Library lib = new Library ();

lib.AddBook ("C# *****", "Gesick", 4);

lib.AddBook ("java programming", "Roth", 2);

lib.AddBook ("C++ programming", "Franklin", 1);

lib.AddBook ("unity programming", "Preston", 3);

lib.AddBook ("graphics & multimedia", "Chastine", 5);

printMenu ();

string p = Console.ReadLine ();

p = p.ToUpper ();

char pick = p [0];

while (pick!='Q') {

switch (pick) {

case 'A':

//insert code here for adding a book

break;

case 'S':

//insert code here for finding a book and

//printing its details

break;

case 'D':

//insert code here for displaying all of the books in the library break;

case 'R':

//insert code here for removing a book break;

default:

Console.WriteLine ("\nInvalid choice, please re-enter");

break;

}

printMenu ();

p = Console.ReadLine ();

p = p.ToUpper ();

pick = p [0];

}

Console.WriteLine ("good bye");

}

public static void printMenu ()

{

Console.WriteLine ("\nSelect one of the following:\n\n" +

" A to add a book to the library\n" +

" S to search for a book by title\n" +

" D to display the contents of the library\n" +

" R to remove a book from the library\n" +

" Q to quit this program\n\n");

Console.Write ("enter choice here: ");

}

}

Reference no: EM131321896

Questions Cloud

What part of the unix os requires modification and why : In terms of porting UNIX, what part of the UNIX OS requires modification? why? Follow the instructions showing the command and the screen that appears directly after typing the command.
Label for the independent and dependent variables : Identify and provide a label for the independent and dependent variables.- Indicate the number of levels in the independent variable, and provide a label for each level.
What is the mean time to failure of the disk : The two failure modes are independent of each other, and independent of the age of the disk. What is the mean time to failure of the disk?
Describe how a pn junction works : For the following assignment you may use any source available. Your responses must be in complete sentences, typed, and double spaced. Length is not an issue, just make sure your answer is complete. A few sentences for each question should be fine..
Create a system for a simple library : Write a console application to meet the following requirements. Create a system for a simple library. The library has a name and a list of books. Each book has a title, author and an int as the id number.
Magnitude of the magnetic field : A 1.98-cm by 1.58-cm rectangular coil has 276 turns. The coil rotates at 66rev/s in a magnetic field. If the maximum emf generated by the coil is 25V, what is the magnitude of the magnetic field?
Average kinetic energy of a molecule : Determine the ratio KEN2/KEO2of the average kinetic energy of a molecule of nitrogen to the average kinetic energy of a molecule of oxygen.
Design one way experiment to test given research hypotheses : Design a one-way experiment to test each of the given research hypotheses:- The more a person tries not to think of something, the more he or she will actually end up thinking about it.
Explain the major theoretical paradigms of sociology : Describe the effect that obesity (childhood and / or adult) has had on you personally or your community. Define the basic concepts used in the discipline of sociology. Explain the major theoretical paradigms of sociology

Reviews

Write a Review

Programming Languages Questions & Answers

  Write a haskell program to calculates a balanced partition

Write a program in Haskell which calculates a balanced partition of N items where each item has a value between 0 and K such that the difference b/w the sum of the values of first partition,

  Create an application to run in the amazon ec2 service

In this project you will create an application to run in the Amazon EC2 service and you will also create a client that can run on local machine and access your application.

  Explain the process to develop a web page locally

Explain the process to develop a Web page locally

  Write functions

These 14 questions covers java class, Array, link list , generic class.

  Programming assignment

If the user wants to read the input from a file, then the output will also go into a different file . If the user wants to read the input interactively, then the output will go to the screen .

  Write a prolog program using swi proglog

Write a Prolog program using swi proglog

  Create a custom application using eclipse

Create a custom Application Using Eclipse Android Development

  Create a application using the mvc architecture

create a application using the MVC architecture. No scripting elements are allowed in JSP pages.

  Develops bespoke solutions for the rubber industry

Develops bespoke solutions for the rubber industry

  Design a program that models the worms behavior

Design a program that models the worm's behavior.

  Writing a class

Build a class for a type called Fraction

  Design a program that assigns seats on an airplane

Write a program that allows an instructor to keep a grade book and also design and implement a program that assigns seats on an airplane.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd