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

  Display the main menu in a loop

CPCS202 - You need to display the main menu in a loop! Why? Because after the customer makes their choices, the menu should appear again. The customer can then exit the system or perform other services.

  How are intelligent agents used on the internet

Define Business Performance Management and how DSS relates the Business Performance Management.

  Display the property tax for n property owners

Write a java application that calculates and displays the property tax for N property owners. N should be declared as a constant and it should be equal to the largest digit of your student ID number

  Design and implement set of classes to model employees

Design and implement a set of classes to model the employees of a hospital: doctor, nurse, administrator, etc. Include methods in each class.

  Use a switch statement to calculate a letter grade

Use a switch statement to calculate a letter grade based on a numeric average up to 100. Allow the numeric score to be entered in a text field. A Grade button will display the corresponding letter grade in a label.

  Find the maximum and minimum of a list of numbers

Write a prolog program to find the maximum and minimum of a list of numbers.

  Computing average net profit per sale of product

Your company bought 250,000 online advertising impressions and made average net profit per sale of product of $5.

  Write code for the missing sections

Use the following code outline as a starting point for your final project. You will need to correct any errors you find and write code for the missing sections.

  Write program to enter name-number of planet from sun

Write down the program which permits the user to enter name of planet, and then prints message stating that planet's number when counted outward from sun.

  Explain the structure and syntax of an html page.

How does an ASP.NET application differ from a desktop application?

  Insert a text box after the paragraph and type your name

Create a two column table with a minimum of seven rows. You may add additional rows as needed to hold additional hyperlinks that you feel will be useful to you as you progress through your degree.

  Write program to evaluate young worker-s earning

Write down a program to evaluate how much young worker will make before retiring at age 65. Request worker's name, age, and starting salary as input.

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