• 大小: 315KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: C/C++
  • 标签: C++  书店管理  

资源简介

使用C++写得书店管理系统。所用知识:txt文件的基本操作,类,随机数,字符串的操作等

资源截图

代码片段和文件信息

#include
#include
#include
#include 
#include  
#include   
#include “quick.h“
#include “myself.h“
#include “suiji.h“
#include “menu.h“
#include “clear.h“
#include “profit.h“ 
 
int main()
{
    int choice;
    Book myBook; 
    profit myprofit;
print_menu();                       //输出菜单 
for(;;){
cin>>choice;
 if(choice==2)           
     {
      myself(0);                       //在buy.txt写入进货 
      cout<<“数据已保存在buy.txt“<     }
     if(choice==3)
 {
    myself(1);                       //在sale.txt写入卖出 
  cout<<“数据已保存在sale.txt“<  } 
if(choice==1)                //随机测试 
{
   suiji(0);
       myBook.setbook(00); 
       cout<<“进货统计保存在expenditure.txt“<        suiji(1);
    myBook.setbook(10);            //每种书的卖出情况
   cout<<“销售统计保存在income.txt“<   myprofit.newprofit();          //每种书利润情况 
  cout<<“利润统计保存在profit.txt“< }
if(choice==4)
{
cout<<“进货统计:“< myBook.setbook(01);               //每种书的进货情况 
      cout<<“进货统计保存在expenditure.txt“< }
if(choice==5)
{
cout<<“销售统计:“< myBook.setbook(11);               //每种书的销售情况 
      cout<<“销售统计保存在income.txt“< }
 if(choice==6)
 {
  cout<<“利润统计: “<      myBook.setbook(00);           //每种书的进货情况 
  myBook.setbook(10);            //每种书的卖出情况
  myprofit.newprofit();          //每种书利润情况 
  cout<<“利润统计保存在profit.in.txt“<  } 
   if(choice==7)clear(0);   //清空“buy.txt“文件
       if(choice==8)clear(1); //清空“sale.txt“文件 
       if(choice==9){
  cout<<“返回菜单“<   print_menu();}
   if(choice==10)break;              //结束 
   //cout<<“一共运行时间“<<(double)clock() / CLOCKS_PER_SEC< }
return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-18 20:31  书店完善版\
     文件         903  2018-05-18 20:31  书店完善版\Makefile.win
     文件        1726  2018-05-15 16:43  书店完善版\Project1.dev
     文件     1323468  2018-05-18 20:31  书店完善版\Project1.exe
     文件         667  2018-05-18 20:44  书店完善版\Project1.layout
     文件         110  2018-05-18 20:32  书店完善版\buy.txt
     文件         316  2018-05-15 16:43  书店完善版\clear.h
     文件         213  2018-05-18 20:33  书店完善版\expenditure.txt
     文件         107  2018-05-18 20:33  书店完善版\income.txt
     文件        1993  2018-05-18 20:31  书店完善版\main.cpp
     文件       17568  2018-05-18 20:31  书店完善版\main.o
     文件         504  2018-05-15 16:28  书店完善版\menu.h
     文件         834  2018-05-18 20:31  书店完善版\myself.h
     文件        2698  2018-05-17 19:05  书店完善版\profit.h
     文件         216  2018-05-18 20:33  书店完善版\profit.in.txt
     文件        2950  2018-05-15 16:28  书店完善版\quick.cpp
     文件         821  2018-05-18 20:23  书店完善版\quick.h
     文件        6879  2018-05-15 16:30  书店完善版\quick.o
     文件          45  2018-05-18 20:33  书店完善版\sale.txt
     文件        1182  2018-05-15 16:28  书店完善版\suiji.h

评论

共有 条评论