皮皮网

【unity源码培训】【wordmean源码】【ISoft源码】图书馆源码

2024-11-06 13:31:57 来源:发卡平台源码免签约

1.ͼ?图书??Դ??

图书馆源码

ͼ???Դ??

       以下代码,仅供参考。馆源

       使用的图书是c++类对象做的。

       //图书馆图书管理程序-完整版

       //本程序提供了多次性入库图书的馆源存储、反复借书还书的图书unity源码培训功能,一旦退出,馆源wordmean源码库存书信息将会丢失

       #include<iostream>

       #include<string>

       #include<iomanip>

       using namespace std;

       int sort=0;

       int a[];

        float b[];

        string n[];//分别存放对象的图书名字、数量和价格

       class Book

       {

       private:

        float s_p;//书本n的馆源单本抵押金额

        int sum;//某种书的总拥有量

       public:

        double price;

        string bookname;

        Book()

        {

        }

        int Bookchange(string n,int a,float s)//构造函数不能显式调用!!图书!馆源!图书!馆源!图书ISoft源码

        {

        sum=a;

        bookname=n;

        s_p=s;

        return(1);

        }

        void disp();//显示图书存借情况

        int borrow();//

        int restore();//

       };

       /////////////////////////////////////////////////////////////////////////////

       void Book::disp()

        {

        cout<<setfill('-');

        cout<<"***"<<setw()<<right<<bookname<<"---------"<<left<<setw()<<sum<<"***"<<endl;

        };

       int Book::borrow()//借出这些书本后剩下的馆源书本数量

       {

        int number_out;//一次性借出书的数量

        cout<<"请输入您想借的书的数量"<<endl;

        cin>>number_out;

        if(sum==0)

        cout<<"该书已经借完,请借其他书或者下次再来"<<endl;

        else if(sum<number_out)

        {

        cout<<"该书还剩下"<<sum<<"本,图书不能满足您的要求,请重新选择借书数量"<<endl;

        }

        else

        {

        price=s_p*number_out;

        sum=sum-number_out;

        cout<<"您要借《"<<bookname<<"》书"<<number_out<<"本(其中,该书押金"<<s_p<<"元/本)"<<endl<<"您共需要付"<<price<<"元;"<<endl<<"书库还剩下"<<"该书"<<sum<<"本"<<endl;

        }

        return(sum);

       }

       int Book::restore()

       {

        int number_in;//一次性存入这些本书后共有的createthread源码数量

        cout<<"您想还书,请输入还书的数量"<<endl;

        cin>>number_in;

        price=s_p*number_in;

        sum=sum+number_in;

        cout<<"您要归还《"<<bookname<<"》书"<<number_in<<"本(其中,押金"<<s_p<<"元/本)"<<endl<<"我们需要返还给您"<<price<<"元;"<<endl<<"书库还剩下"<<"该书"<<sum<<"本"<<endl;

        return (sum);

       }

       /////////////////

       Book p[];////数组对象,上限

       /////////////////

       void store()/////////数组对象的初始化

        {

        cout<<"现在您要进行图书入库操作,请输入本次入库书籍的pvt源码种类数"<<endl;

        int sort_add;

        cin>>sort_add;

        if(sort_add==0)

        goto loop2;

        cout<<"然后,请依次输入:"<<endl<<"书名 本次入库数量 单本借书押金"<<endl;

        int i;

        for(i=1;i<=sort_add;i++)//sort种书的对象初始化,并且为各种书进行编号

        {

        cin>>n[i-1]>>a[i-1]>>b[i-1];

        p[sort+i-1].Bookchange(n[i-1],a[i-1],b[i-1]);//通过函数bookchange来对p[i]进行初始化,避免了对构造函数的显式调用

        cout<<"请记住,该书的编号为"<<sort+i-1<<"下次借还时请直接输入书的编号;"<<endl;

        if(i==sort_add)

        cout<<endl;

        }

        loop2:sort=sort+sort_add;

        }

       void library()

       {

        cout<<setfill('-');

        cout<<"/////////////////////////////////////////////"<<endl;

        cout<<"///-------编号-------书名-----------------///"<<endl;

        for(int i=0;i<sort;i++)

        {

        cout<<"///"<<setw()<<right<<i<<"---------"<<left<<setw()<<p[i].bookname<<"///"<<endl;

        }

        cout<<"/////////////////////////////////////////////"<<endl;

       }

       void main()

       {

        cout<<"☆☆☆☆☆☆敖☆☆☆☆☆☆鸿☆☆☆☆☆☆制☆☆☆☆☆☆作☆☆☆☆☆☆Elf☆☆☆☆"<<endl;

        cout<<" ☆☆☆☆图书管理程序-完美控制台.本程序提供了以下三种功能功能☆☆☆☆☆"<<endl;

        cout<<"☆☆永☆☆☆☆☆远☆☆☆☆☆的☆☆☆☆☆精☆☆☆☆☆灵☆☆☆☆☆Elf☆☆"<<endl;

        cout<<"一、图书反复入库操作"<<endl<<"二、反复借书"<<endl<<"三、反复还书"<<endl<<"请根据提示进行操作"<<endl<<"---------------------------------------------------------"<<endl;

       /////////////////////////////////////////////////////////////////////////////

        cout<<"现在书库还没有书呢,请先进行图书入库操作(库存上限种)"<<endl;

        char jud1='n';

        while(jud1!='y')

        {

        int book_no;

        char jud2;

        loop:cout<<"借书--b,还书--r,图书入库--s"<<endl;

        cin>>jud2;

        if(jud2=='s')

        store();

        else if(jud2=='r')

        {

        library();

        cout<<"您还哪种书?请输入该书的编号"<<endl;

        cin>>book_no;

        p[book_no].restore();

        }

        else if (jud2=='b')

        {

        library();

        cout<<"您借哪种书?请输入该书的编号"<<endl;

        cin>>book_no;

        p[book_no].borrow();

        }

        else goto loop;

        cout<<"程序正常运行中,请选择下一步操作:c—继续,e—退出"<<endl;

        char jud_;

        cin>>jud_;

        if(jud_=='e')

        {

        cout<<"一旦退出,所有库存将会置0,确定要退出吗?y/n"<<endl;

        cin>>jud1;

        }

        else jud1='n';

        }

        int j=0;

        cout<<"