Advertisement
Nil000

library M.S.

Feb 24th, 2024
1,037
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 19.01 KB | None | 2 0
  1. #include<bits/stdc++.h>
  2. #include<iostream>
  3. #include<fstream>
  4. #include<stdlib.h>
  5. #include<stdio.h>
  6. #include<process.h>
  7. #include<conio.h>
  8. using namespace std;
  9. #define el "\n"
  10. #define sp " "
  11.  
  12. int res_book(int,int);    //To check whether any book a given book no. exists or not
  13. /*Class of books*/
  14. class book
  15. {
  16.  protected:
  17.  int bno,quant;      //book no
  18.  char bname[50];     //book name
  19.  char aname[50];     //book author's name
  20.  char pname[50];      //publication name
  21.  public:
  22.   void createb();
  23.   void showb();
  24.   void showlist();
  25.   void assignbno(int x)       //bno assigned on the basis of no
  26.   {          //no. of objects in file
  27.    bno=10001;
  28.    bno+=x-1;
  29.    start1:
  30.     bno+=1;
  31.     if(res_book(bno,0))
  32.     goto start1;
  33.   }
  34.   void set_q()
  35.   {
  36.    quant-=1;
  37.   }
  38.   int quantity()
  39.   {
  40.    return quant;
  41.   }
  42.   void reset_q()
  43.   {
  44.    quant+=1;
  45.   }
  46.   int retbno()
  47.   {
  48.    return bno;
  49.   }
  50. };
  51. /*End of class book*/
  52.  
  53.  
  54. void book::createb()       //To enter data in data members of class book
  55. {
  56.  int i;
  57.  cout<<"\n\t\tEnter the details:-\n";
  58.  cout<<"\n\t\tEnter Book's Name: ";
  59.  char n[50];
  60.  cin.getline(n,50);
  61.  cin.getline(bname,50);
  62.  for(i=0;bname[i]!='\0';i++)
  63.  {
  64.   if(bname[i]>='a'&&bname;[i]<='z')
  65.   bname[i]-=32;
  66.  }
  67.  cout<<"\n\t\tEnter Author's Name: ";
  68.  cin.getline(aname,50);
  69.  cout<<"\n\t\tEnter Publication Name: ";
  70.  cin.getline(pname,50);
  71.  cout<<"\n\t\tEnter Book's quantity: ";
  72.  cin>>quant;
  73. }
  74.  
  75.  
  76. void book::showb()           //To display the details of books
  77. {
  78.  cout<<"\n\t\tBook No.: "<<bno<<el;
  79.  cout<<"\n\t\tBook Name: "<<bname<<el;
  80.  cout<<"\n\t\tBook's Author Name: "<<aname<<el;
  81.  cout<<"\n\t\tBook's Publication: "<<pname<<el;
  82.  cout<<"\n\t\tBook's Quantity: "<<quant<<el;
  83. }
  84.  
  85.  
  86. void book::showlist()          //To display book details in list form
  87. {
  88.  cout<<"\n\t"<<bno<<"\t\t"<<bname<<"\t\t"<<aname<<"\t\t"<<quant;
  89. }
  90.  
  91.  
  92. /*Class of Students*/
  93. class student
  94. {
  95.  protected:
  96.   char name[25];     //Student name
  97.   int bno;      //Book no. of book issued
  98.   int token;      //To veirfy book issued or not
  99.  public:
  100.   void creates();
  101.   void shows();
  102.   void showlist();
  103.   void settoken(int x)   //To set token and assign bno a book no
  104.   {
  105.    bno=x;
  106.    token=1;
  107.   }
  108.   void resettoken()    //To reset token
  109.   {
  110.    bno=0;
  111.    token=0;
  112.   }
  113.   int retbno()
  114.   {
  115.    return bno;
  116.   }
  117.   int admno;      //Admission No
  118. };
  119. /*End of class Students*/
  120.  
  121. bool res_student(int);     //To check whether the admission no. already exist or not
  122. void student::creates()                //To enter values to all data members of class student
  123. {
  124.  int i;
  125.  plane:
  126.  system&#40;"CLS"&#41;;
  127.  cout<<"\n\t\tEnter the details:-\n";
  128.  cout<<"\n\t\tEnter student's Admission no: ";
  129.  cin>>admno;
  130.  if(res_student(admno))
  131.  {
  132.   cout<<"\n\t\tRecord already exist with this admission no.";
  133.   cout<<"\n\t\tEnter a different admission no.\n";
  134.   system&#40;"PAUSE"&#41;;
  135.   goto plane;
  136.  }
  137.  cout<<"\n\t\tEnter student's Name: ";
  138.  char n[50];
  139.  cin.getline(n,50);
  140.  cin.getline(name,25);
  141.  for(i=0;name[i]!='\0';i++)
  142.  {
  143.   if(name[i]>='a'&&name;[i]<='z')
  144.   name[i]-=32;
  145.  }
  146.  bno=0;
  147.  token=0;
  148. }
  149.  
  150.  
  151. void student::shows()                                     //Show details of Students
  152. {
  153.  cout<<"\n\t\tStudent's Admission No.: "<<admno<<el;
  154.  cout<<"\n\t\tStudent's Name: "<<name<<el;
  155.  if(token==1)
  156.  {
  157.   cout<<"\n\t\tBook Issued (Book no): "<<bno;
  158.  }
  159. }
  160.  
  161.  
  162. void student::showlist()                                  // To display Student details in list form
  163. {
  164.  cout<<"\n\t"<<admno<<"\t\t"<<name<<"\t\t"<<bno;
  165. }
  166.  
  167.  
  168. /*To Write object of class book in file*/
  169. void write_book()
  170. {
  171.  book bk;
  172.  ofstream outf("book1.bin",ios::app|ios::binary);
  173.  outf.seekp(0,ios::end);
  174.  int x=outf.tellp()/sizeof(book);
  175.  bk.assignbno(x);
  176.  bk.createb();
  177.  bk.showb();
  178.  outf.write(reinterpret_cast<char *>(&bk;),sizeof(book));
  179.  cout<<"\n\t\tRecord added successfully";
  180.  outf.close();
  181. }
  182.  
  183.  
  184. /*To Write object of class student in file*/
  185. void write_student()
  186. {
  187.  student st;
  188.  ofstream outf("student.bin",ios::app|ios::binary);
  189.  outf.seekp(0,ios::end);
  190.  st.creates();
  191.  st.shows();
  192.  outf.write(reinterpret_cast<char *>(&st;),sizeof(student));
  193.  cout<<"\n\t\tRecord added successfully";
  194.  outf.close();
  195. }
  196.  
  197. /*To display Student records in list form*/
  198. void list_student()
  199. {
  200.  system&#40;"CLS"&#41;;
  201.  student st;
  202.  ifstream intf("student.bin",ios::in|ios::binary);
  203.  intf.seekg(0,ios::beg);
  204.  if(!intf)
  205.  cout<<"\n\t\tFile not found";
  206.  else
  207.  {
  208.   cout<<"\n\t*****Students Details*****\n\n";
  209.   cout<<"\n\tAdmission No:\tName: \tBook Issued:";
  210.   while(intf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  211.   st.showlist();
  212.  }
  213.  intf.close();
  214. }
  215.  
  216.  
  217. /*To display book records in list form*/
  218. void list_book()
  219. {
  220.  book bk;
  221.  ifstream intf("book1.bin",ios::in|ios::binary);
  222.  intf.seekg(0,ios::beg);
  223.  if(!intf)
  224.  cout<<"\n\t\tFile not found";
  225.  else
  226.  {
  227.   cout<<"\n\t*****Books Details*****\n\n";
  228.   cout<<"\n\tBook No:\t\tName: \t\tAuthor's Name: \t\tQuantity: ";
  229.   while(intf.read(reinterpret_cast<char *>(&bk;),sizeof(book)))
  230.   bk.showlist();
  231.  }
  232.  intf.close();
  233. }
  234.  
  235.  
  236. /*To search for a specific student*/
  237. void search_student(int x)
  238. {
  239.  student st;
  240.  int cnt=0;
  241.  ifstream intf("student.bin",ios::in|ios::binary);
  242.  intf.seekg(0,ios::beg);
  243.  if(!intf)
  244.  cout<<"\n\t\tFile not found";
  245.  else
  246.  {
  247.   while(intf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  248.   {
  249.    if(st.admno==x)
  250.    {
  251.     cnt++;
  252.     cout<<"\n\t\tFILE FOUND!!!!";
  253.     st.shows();
  254.     break;
  255.    }
  256.   }
  257.   if(cnt==0)
  258.   cout<<"\n\t\tNo such record exists";
  259.  }
  260.  intf.close();
  261. }
  262.  
  263.  
  264. /*To search for a specific book*/
  265. void search_book(int x)
  266. {
  267.  book bk;
  268.  int cnt=0;
  269.  ifstream intf("book1.bin",ios::in|ios::binary);
  270.  intf.seekg(0,ios::beg);
  271.  if(!intf)
  272.  cout<<"\n\t\tFile not found";
  273.  else
  274.  {
  275.   while(intf.read(reinterpret_cast<char *>(&bk;),sizeof(book)))
  276.   {
  277.    if(bk.retbno()==x)
  278.    {
  279.     cnt++;
  280.     cout<<"\n\t\tFILE FOUND!!!!";
  281.     bk.showb();
  282.     break;
  283.    }
  284.   }
  285.   if(cnt==0)
  286.   cout<<"\n\t\tNo such record exists";
  287.  }
  288.  intf.close();
  289. }
  290.  
  291.  
  292. /*To modify the book records*/
  293. void modify_book(int x)
  294. {
  295.  book bk;
  296.  int cnt=0;
  297.  fstream intf("book1.bin",ios::in|ios::out|ios::ate|ios::binary);
  298.  intf.seekg(0,ios::beg);
  299.  if(!intf)
  300.  cout<<"\n\t\tFile not found";
  301.  else
  302.  {
  303.   while(intf.read(reinterpret_cast<char *>(&bk;),sizeof(book)))
  304.   {
  305.    if(bk.retbno()==x)
  306.    {
  307.     cnt++;
  308.     bk.createb();
  309.     bk.showb();
  310.     intf.seekp(intf.tellp()-sizeof(book));
  311.     intf.write(reinterpret_cast<char *>(&bk;),sizeof(book));
  312.     cout<<"\n\t\tRecord Updated";
  313.     break;
  314.    }
  315.   }
  316.   if(cnt==0)
  317.   cout<<"\n\t\tNo such record exists";
  318.  }
  319.  intf.close();
  320. }
  321.  
  322.  
  323. /*To modify the student records*/
  324. void modify_student(int x)
  325. {
  326.  student st;
  327.  int cnt=0;
  328.  fstream intf("student.bin",ios::in|ios::out|ios::ate|ios::binary);
  329.  intf.seekg(0,ios::beg);
  330.  if(!intf)
  331.  cout<<"\n\t\tFile not found";
  332.  else
  333.  {
  334.   while(intf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  335.   {
  336.    if(st.admno==x)
  337.    {
  338.     cnt++;
  339.     st.creates();
  340.     st.shows();
  341.     intf.seekp(intf.tellp()-sizeof(student));
  342.     intf.write(reinterpret_cast<char *>(&st;),sizeof(student));
  343.     cout<<"\n\t\tRecord Updated";
  344.     break;
  345.    }
  346.   }
  347.   if(cnt==0)
  348.   cout<<"\n\t\tNo such record exists";
  349.  }
  350.  intf.close();
  351. }
  352.  
  353.  
  354. /*To delete a specific student record*/
  355. void delete_student(int x)
  356. {
  357.  student st;
  358.  int cnt=0;
  359.  ifstream intf("student.bin",ios::in|ios::binary);
  360.  intf.seekg(0,ios::beg);
  361.  if(!intf)
  362.  cout<<"\n\t\tFile not found";
  363.  else
  364.  {
  365.   ofstream outf("temp.bin",ios::app|ios::binary);
  366.   while(intf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  367.   {
  368.    if(st.admno==x)
  369.    cnt++;
  370.    else
  371.    outf.write(reinterpret_cast<char *>(&st;),sizeof(student));
  372.   }
  373.   intf.close();
  374.   outf.close();
  375.   if(cnt==0)
  376.   {
  377.    remove("temp.bin");
  378.    cout<<"\n\t\tNo such record exists";
  379.   }
  380.   else
  381.   {
  382.    remove("student.bin");
  383.    rename("temp.bin","student.bin");
  384.    cout<<"\n\t\tRecord deleted successfully";
  385.   }
  386.  }
  387. }
  388.  
  389. /*To delete a specific book record*/
  390. void delete_book(int x)
  391. {
  392.  book bk;
  393.  int cnt=0;
  394.  ifstream intf("book1.bin",ios::in|ios::binary);
  395.  intf.seekg(0,ios::beg);
  396.  if(!intf)
  397.  cout<<"\n\t\tFile not found";
  398.  else
  399.  {
  400.   ofstream outf("temp1.bin",ios::app|ios::binary);
  401.   while(intf.read(reinterpret_cast<char *>(&bk;),sizeof(book)))
  402.   {
  403.    if(bk.retbno()==x)
  404.    cnt++;
  405.    else
  406.    outf.write(reinterpret_cast<char *>(&bk;),sizeof(book));
  407.   }
  408.   intf.close();
  409.   outf.close();
  410.   if(cnt==0)
  411.   {
  412.    remove("temp1.bin");
  413.    cout<<"\n\t\tNo such record exists";
  414.   }
  415.   else
  416.   {
  417.    remove("book.bin");
  418.    rename("temp1.bin","book.bin");
  419.    cout<<"\n\t\tRecord deleted successfully";
  420.   }
  421.  }
  422. }
  423.  
  424. //To search whether a specific student record exists or not
  425. bool res_student(int x)
  426. {
  427.  student st;
  428.  int cnt=0,f=0;
  429.  ifstream intf("student.bin",ios::in|ios::binary);
  430.  intf.seekg(0,ios::beg);
  431.  if(!intf)
  432.  f=1;
  433.  else
  434.  {
  435.   while(intf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  436.   {
  437.    if(st.admno==x)
  438.    {
  439.     cnt++;
  440.     break;
  441.    }
  442.   }
  443.   if(cnt==0)
  444.   f=1;
  445.  }
  446.  intf.close();
  447.  if(f)
  448.  return 0;
  449.  else
  450.  return 1;
  451. }
  452.  
  453.  
  454. /*To search a specific book and return true or false*/
  455. int res_book(int x,int z)
  456. {
  457.  book bk;
  458.  int cnt=0,f=1;
  459.  fstream intf("book1.bin",ios::in|ios::out|ios::ate|ios::binary);
  460.  intf.seekg(0,ios::beg);
  461.  if(!intf)
  462.  f=0;
  463.  else
  464.  {
  465.   while(intf.read(reinterpret_cast<char *>(&bk;),sizeof(book)))
  466.   {
  467.    if(bk.retbno()==x)
  468.    {
  469.     cnt++;
  470.     if(z==1)
  471.     {
  472.      bk.showb();
  473.      if(bk.quantity()>0)
  474.      {
  475.       bk.set_q();
  476.       intf.seekp(intf.tellp()-sizeof(book));
  477.       intf.write(reinterpret_cast<char *>(&bk;),sizeof(book));
  478.      }
  479.      else
  480.      f=2;
  481.     }
  482.     else if(z==2)
  483.     {
  484.      bk.showb();
  485.      bk.reset_q();
  486.      intf.seekp(intf.tellp()-sizeof(book));
  487.      intf.write(reinterpret_cast<char *>(&bk;),sizeof(book));
  488.     }
  489.     break;
  490.    }
  491.   }
  492.   if(cnt==0)
  493.   f=0;
  494.  }
  495.  intf.close();
  496.  return f;
  497. }
  498.  
  499.  
  500. /*To issue books*/
  501. void book_issue()
  502. {
  503.  int sn,bn;
  504.  system&#40;"CLS"&#41;;
  505.  cout<<"\n\n\t\t*****BOOK ISSUE******";
  506.  cout<<"\n\n\t\tEnter the student's admission no: ";
  507.  cin>>sn;
  508.  int cnt=0;
  509.  student st;
  510.  fstream outf("student.bin",ios::in|ios::out|ios::ate|ios::binary);
  511.  outf.seekg(0,ios::beg);
  512.  if(!outf)
  513.  cout<<"\n\t\tFile not found\n";
  514.  else
  515.  {
  516.   while(outf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  517.   {
  518.    if(st.admno==sn)
  519.    {
  520.     cnt++;
  521.     list_book();
  522.     cout<<"\n\n\t\tEnter the book no.:";
  523.     cin>>bn;
  524.     cout<<"\n";
  525.     int flag=res_book(bn,1);
  526.     if(flag==1)
  527.     {
  528.      st.settoken(bn);
  529.      outf.seekp(outf.tellp()-sizeof(student));
  530.      outf.write(reinterpret_cast<char *>(&st;),sizeof(student));
  531.      cout<<"\n\t\tBook Issued";
  532.      cout<<"\n\t\tNote: Write the current date in backside of the book";
  533.      cout<<"\n\t\t      Should be submitted within 15 days to avoid fine";
  534.      cout<<"\n\t\t      The fine is Rs. 1 for each day after 15 days period\n";
  535.      break;
  536.     }
  537.     else if(flag==2)
  538.     {
  539.      cout<<"\n\t\tTHE BOOK IS OUT OF STOCK!!!";
  540.      break;
  541.     }
  542.     else
  543.     {
  544.      cout<<"\n\t\tNo such record exists\n";
  545.      break;
  546.     }
  547.    }
  548.   }
  549.   if(cnt==0)
  550.   cout<<"\n\t\tNo such record exists\n";
  551.  }
  552.  outf.close();
  553. }
  554.  
  555.  
  556. /*To deposit books*/
  557. void book_deposit()
  558. {
  559.  int sn,bn;
  560.  system&#40;"CLS"&#41;;
  561.  cout<<"\n\n\t\t*****BOOK DEPOSIT******";
  562.  cout<<"\n\n\t\tEnter the student's admission no: ";
  563.  cin>>sn;
  564.  int cnt=0;
  565.  student st;
  566.  fstream outf("student.bin",ios::in|ios::out|ios::ate|ios::binary);
  567.  outf.seekg(0,ios::beg);
  568.  if(!outf)
  569.  cout<<"\n\t\tFile not found\n";
  570.  else
  571.  {
  572.   while(outf.read(reinterpret_cast<char *>(&st;),sizeof(student)))
  573.   {
  574.    if(st.admno==sn)
  575.    {
  576.     cnt++;
  577.     bn=st.retbno();
  578.     bool flag=res_book(bn,2);
  579.     if(flag)
  580.     {
  581.      st.resettoken();
  582.      outf.seekp(outf.tellp()-sizeof(student));
  583.      outf.write(reinterpret_cast<char *>(&st;),sizeof(student));
  584.      int days;
  585.      cout<<"\n\t\tBook deposited in no. of days:";
  586.      cin>>days;
  587.      if(days>15)
  588.      {
  589.       int fine=(days-15)*1;
  590.       cout<<"\n\n\t\tFine: "<<fine<<el;
  591.      }
  592.      cout<<"\n\t\tBook Deposited Successfully\n";
  593.      break;
  594.     }
  595.     else
  596.     {
  597.      cout<<"\n\t\tNo such record exists\n";
  598.      break;
  599.     }
  600.    }
  601.   }
  602.   if(cnt==0)
  603.   cout<<"\n\t\tNo such record exists\n";
  604.  }
  605.  outf.close();
  606. }
  607.  
  608. /*Function that has features of Admin Menu*/
  609. void admin_menu()
  610. {
  611. fine:
  612.  system&#40;"PAUSE"&#41;;
  613.  system&#40;"CLS"&#41;;
  614.  int opt;
  615.  cout<<"\n\n\n\t\t\t******ADMINISTRATOR MENU******";
  616.     cout<<"\n\n\t1.\tCREATE STUDENT RECORD";
  617.     cout<<"\n\n\t2.\tDISPLAY ALL STUDENTS RECORD";
  618.     cout<<"\n\n\t3.\tDISPLAY SPECIFIC STUDENT RECORD ";
  619.     cout<<"\n\n\t4.\tMODIFY STUDENT RECORD";
  620.     cout<<"\n\n\t5.\tDELETE STUDENT RECORD";
  621.     cout<<"\n\n\t6.\tCREATE BOOK ";
  622.     cout<<"\n\n\t7.\tDISPLAY ALL BOOKS ";
  623.     cout<<"\n\n\t8.\tDISPLAY SPECIFIC BOOK ";
  624.     cout<<"\n\n\t9.\tMODIFY BOOK ";
  625.     cout<<"\n\n\t10.\tDELETE BOOK ";
  626.     cout<<"\n\n\t11.\tBACK TO MAIN MENU";
  627.     cout<<"\n\n\tPlease Enter Your Choice (1-11) ";
  628.     cin>>opt;
  629.     if(opt==1)
  630.     {
  631.      system&#40;"CLS"&#41;;
  632.      write_student();
  633.      cout<<el;
  634.      goto fine;
  635.  }
  636.  else if(opt==2)
  637.  {
  638.   system&#40;"CLS"&#41;;
  639.      list_student();
  640.      cout<<el;
  641.      goto fine;
  642.  }
  643.  else if(opt==3)
  644.  {
  645.   system&#40;"CLS"&#41;;
  646.   int ad;
  647.   cout<<"\n\n\n\t\tEnter the admission no. of the student";
  648.   cin>>ad;
  649.   search_student(ad);
  650.   cout<<el;
  651.   goto fine;
  652.  }
  653.  else if(opt==4)
  654.  {
  655.   system&#40;"CLS"&#41;;
  656.   int ad;
  657.   cout<<"\n\n\n\t\tEnter the admission no. of the student";
  658.   cin>>ad;
  659.   modify_student(ad);
  660.   cout<<el;
  661.   goto fine;
  662.  }
  663.  else if(opt==5)
  664.  {
  665.   system&#40;"CLS"&#41;;
  666.   int ad;
  667.   cout<<"\n\n\n\t\tEnter the admission no. of the student";
  668.   cin>>ad;
  669.   delete_student(ad);
  670.   cout<<el;
  671.   goto fine;
  672.  }
  673.  else if(opt==6)
  674.     {
  675.      system&#40;"CLS"&#41;;
  676.      write_book();
  677.      cout<<el;
  678.      goto fine;
  679.  }
  680.  else if(opt==7)
  681.  {
  682.   system&#40;"CLS"&#41;;
  683.      list_book();
  684.      cout<<el;
  685.      goto fine;
  686.  }
  687.  else if(opt==8)
  688.  {
  689.   system&#40;"CLS"&#41;;
  690.   int ad;
  691.   cout<<"\n\n\n\t\tEnter the book no. of the book";
  692.   cin>>ad;
  693.   search_book(ad);
  694.   cout<<el;
  695.   goto fine;
  696.  }
  697.  else if(opt==9)
  698.  {
  699.   system&#40;"CLS"&#41;;
  700.   int ad;
  701.   cout<<"\n\n\n\t\tEnter the book no. of the book";
  702.   cin>>ad;
  703.   modify_book(ad);
  704.   cout<<el;
  705.   goto fine;
  706.  }
  707.  else if(opt==10)
  708.  {
  709.   system&#40;"CLS"&#41;;
  710.   int ad;
  711.   cout<<"\n\n\n\t\tEnter the book no. of the book";
  712.   cin>>ad;
  713.   delete_book(ad);
  714.   cout<<el;
  715.   goto fine;
  716.  }
  717.  else if(opt==11)
  718.  return ;
  719.  else
  720.  {
  721.   cout<<"\n\t\tEnter correct option";
  722.   cout<<el;
  723.   goto fine;
  724.  }
  725. }
  726.  
  727. /*Checks for correct password*/
  728. //The password if predefined and has to be changed through the source code
  729. //of application
  730. //bool passwords()
  731. //{
  732. // int i=0;
  733. // char ch,st[21],ch1[21]={"0000"};
  734. // cout<<"\n\n\t\tEnter Password : ";
  735. // while(1)
  736. //    {
  737. //     ch=getch();
  738. //     if(ch==13)
  739. //     {
  740. //         st[i]='\0';
  741. //         break;
  742. //     }
  743. //     else if(ch==8&&i>0)
  744. //     {
  745. //         i--;
  746. //         cout<<"\b \b";
  747. //     }
  748. //     else
  749. //     {
  750. //      cout<<"*";
  751. //      st[i]=ch;
  752. //      i++;
  753. //     }
  754. //    }
  755. //    for(i=0;st[i]==ch1[i]&&st;[i]!='\0'&&ch1;[i]!='\0';i++);
  756. //    if(st[i]=='\0'&&ch1;[i]=='\0')
  757. //    return 1;
  758. //    else
  759. //    return 0;
  760. //}
  761.  
  762. void signUp(map<string, string>& users) {
  763.     string username, password;
  764.  
  765.     cout << "Enter your desired username: ";
  766.     cin >> username;
  767.  
  768.     // Check if the username already exists
  769.     if (users.find(username) != users.end()) {
  770.         cout << "Username already exists. Please choose another username.\n";
  771.         return;
  772.     }
  773.  
  774.     cout << "Enter your password: ";
  775.     cin >> password;
  776.  
  777.     // Add the new user to the map
  778.     users[username] = password;
  779.  
  780.     cout << "Sign up successful!\n";
  781. }
  782.  
  783. // Function to log in a user
  784. bool logIn(const map<string, string>& users) {
  785.     string username, password;
  786.  
  787.     cout << "Enter your username: ";
  788.     cin >> username;
  789.  
  790.     // Check if the username exists
  791.     auto it = users.find(username);
  792.     if (it == users.end()) {
  793.         cout << "Username not found. Please sign up or enter a valid username.\n";
  794.         return false;
  795.     }
  796.  
  797.     cout << "Enter your password: ";
  798.     cin >> password;
  799.  
  800.     // Check if the entered password matches the stored password
  801.     if (it->second == password) {
  802.         cout << "Login successful!\n";
  803.         return true;
  804.     } else {
  805.         cout << "Incorrect password. Login failed.\n";
  806.         return false;
  807.     }
  808. }
  809.  
  810. //Main function
  811. int main()
  812. {
  813.  cout<<"\n\n\t\t\t*******************************************";
  814.  cout<<"\n\t\t\t------------------------------------------";
  815.  cout<<"\n\t\t\t\tLIBRARY MANAGEMENT SYSTEM";
  816.  cout<<"\n\t\t\t------------------------------------------";
  817.  cout<<"\n\t\t\t*******************************************";
  818. // bool a=passwords();
  819. // if(!a)
  820. // {
  821. //  for(int i=0;i<2;i++)
  822. //  {
  823. //   cout<<"\nWrong password";
  824. //   cout<<"\nYou have "<<2-i<<"attempts left";
  825. //   if(passwords())
  826. //   goto last;
  827. //   if(i==1)
  828. //   {
  829. //    cout<<"\n\n\n\t\t\t All attempts failed........";
  830. //    cout<<"\n\n\t\t\t Sorry, but you can't login";
  831. //    exit(0);
  832. //   }
  833. //  }
  834. // }
  835.  
  836.  map<string, string> users;  // Map to store usernames and passwords
  837.  
  838.     char choice;
  839.  
  840.     do {
  841.         cout << "\nMenu:\n";
  842.         cout << "1. Sign Up\n";
  843.         cout << "2. Log In\n";
  844.         cout << "3. Exit\n";
  845.         cout << "Enter your choice: ";
  846.         cin >> choice;
  847.  
  848.         switch (choice) {
  849.             case '1':
  850.                 signUp(users);
  851.                 break;
  852.             case '2':
  853.                 if (logIn(users)) {
  854.                     // Perform actions after successful login
  855.                     // For simplicity, let's just break the loop here
  856.                     cout << "Welcome! Exiting...\n";
  857.                     choice = '3';  // Set choice to exit the loop
  858.                 }
  859.                 break;
  860.             case '3':
  861.                 cout << "Exiting...\n";
  862.                 break;
  863.             default:
  864.                 cout << "Invalid choice. Please try again.\n";
  865.         }
  866.     } while (choice != '3');
  867.  last:
  868.   cout<<"\n\n";
  869.  start:
  870.   system&#40;"PAUSE"&#41;;
  871.   system&#40;"CLS"&#41;;
  872.   int opt;
  873.   cout<<"\n\n\t\t\t------------------------------------------";
  874.   cout<<"\n\t\t\t\tLIBRARY MANAGEMENT SYSTEM";
  875.   cout<<"\n\t\t\t------------------------------------------";
  876.   cout<<"\n\n\t\t\tWhat do you want to do?";
  877.   cout<<"\n\t\t\t1.\tBOOK ISSUE";
  878.   cout<<"\n\t\t\t2.\tBOOK DEPOSIT";
  879.   cout<<"\n\t\t\t3.\tADMINISTRATOR MENU";
  880.   cout<<"\n\t\t\t4.\tExit";
  881.   cout<<"\n\n Choose your option: ";
  882.   cin>>opt;
  883.   if(opt==1)
  884.   {
  885.    system&#40;"CLS"&#41;;
  886.    book_issue();
  887.    goto start;
  888.   }
  889.   else if(opt==2)
  890.   {
  891.    system&#40;"CLS"&#41;;
  892.    book_deposit();
  893.    goto start;
  894.   }
  895.   else if(opt==3)
  896.   {
  897.    admin_menu();
  898.    goto start;
  899.   }
  900.   else if(opt==4)
  901.   exit(0);
  902.   else
  903.   {
  904.    cout<<"\n\t\tEnter correct option";
  905.    goto start;
  906.   }
  907. }
  908.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement