pseudocode for bookstore inventory system
#1

hello thank I want to see yes please sure ehy not yes,
thanks
Reply
#2

pseudocode for bookstore inventory system

include <iostream.h>
#include <iomanip.h>
#include <conio.h>

class library
{
char author[15][20],title[15][20];
int price[15];
char pub[15][20];
int s;
public:
void getdata(void);
void display(void);
};

void library :: getdata(void)
{
cout<<"How many Entry you want to make :-";
cin>>s;
for(int i=0;i<s;i++)
{
cout<<"\n\nEnter Author Name :- ";
cin>>author[i];
cout<<"Enter Book Title :- ";
cin>>title[i];
cout<<"Enter Price of Book :- ";
cin>>price[i];
cout<<"Enter Publisher of Book :- ";
cin>>pub[i];
}
}

void library :: display(void)
{
clrscr();
cout<<setw(50)<<"LIBRARY DATABASE";
cout<<endl<<endl;
for(int a=0;a<40;a++)
cout<<"*-";
cout<<endl;
cout<<setw(17)<<"AUTHOR NAME"<<setw(20)<<"BOOK TITLE"<<setw(22)<<"PRICE"<<setw(18)<<"PUBLISHER"<<endl;
for(int b=0;b<40;b++)
cout<<"*-";
cout<<endl;

for(int i=0;i<s;i++)
{
cout<<setw(17)<<author[i]<<setw(20)<<title[i]<<setw(22)<<price[i]<<setw(18)<<pub[i]<<endl;
}
}

void main()
{
clrscr();
library o1;
o1.getdata();
o1.display();
getch();
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: online bookstore project documentation, ppt er diagram online bookstore, marketing plan for bookstore, shortest remaining time scheduling pseudocode pdf, pseudocode for online ticket booking, university bookstore madison, powered by smf bookstore,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  questions asked in viva on topic inventory management 2 1,135 23-07-2016, 02:55 PM
Last Post: jaseela123d
  questions asked in viva on topic inventory management 2 866 12-07-2016, 04:38 PM
Last Post: dhanabhagya
  download inventory management system in jsp source code 1 711 20-04-2016, 11:03 AM
Last Post: dhanabhagya
  srs online bookstore on cloud infrastruture 1 749 30-03-2016, 02:52 PM
Last Post: dhanabhagya
Tongue uml diagram of inventory management system in pdf 1 660 11-03-2016, 02:30 PM
Last Post: seminar report asees
  inventory management system in android with code 1 497 05-03-2016, 02:11 PM
Last Post: seminar report asees
  online sales and inventory management system ramkiitam 4 4,194 06-02-2012, 12:18 PM
Last Post: seminar addict
  online sales and inventory management system swapna rani 1 1,769 21-09-2010, 09:42 AM
Last Post: seminar surveyer

Forum Jump: