Posts

Showing posts with the label cpp

100% Working C++ Tambola/Housie Code with 90 Unique Numbers

Image
#include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> #include<windows.h> using namespace std; int static tktno=1; void housiedesign() { cout<<"Welcome to Royale...\n"; cout<<setw(30)<<"               HH    HH    OOOOO     UU     UU   SSSSS   II  EEEEEEE \n"; cout<<setw(30)<<"               HH    HH   OO    OO   UU     UU  SS       II  EE      \n"; cout<<setw(30)<<"               HHHHHHHH  OO      OO  UU     UU   SSSSS   II  EEEEEEE \n"; cout<<setw(30)<<"               HH  ...

C++ DFH Item ordering and storing in file project with admin and guest Panels(with Search Modify , delete, restore, total business and much more...)100%working(in DevC++)

//first you have to add a few products in admin panel and password for admin is :admin and place a few orders from guest end to explore all the functions , ENJOY:) #include<iostream> #include<fstream> #include<iomanip> #include<stdio.h> #include<string.h> #include<conio.h> using namespace std; class items; class bill; class billdetails; //////////////////////////////////////////// //PROTYPING THE FUNCTIONS void allorders(); void searchbillno(); void restore(); void modifyrecord(); void addrecord(); void pattern(); void displayallitems(); void adminpage(); void startpage(); void guestpage(); void searchitem(); void removeproduct(); void searchitem(); void outofstock(); int generatebillno(); void placeorder(); char *getnamefromfile(int i); void headingoforderdetails(); void headingforproductsales(); void getorderfromfile(int ); class bill { protected: int billno; public: bill() { ...

C++ DFH Program Restaurant themed with delete , modify ,add and place order with guest and admin sections

 #include<iostream>//password for admin section is:admin #include<fstream> #include<iomanip> #include<stdio.h> #include<string.h> #include<conio.h> using namespace std; class items; class bill; class billdetails; //////////////////////////////////////////// //PROTYPING THE FUNCTIONS void searchbillno(); void restore(); void modifyrecord(); void addrecord(); void pattern(); void displayallitems(); void adminpage(); void startpage(); void guestpage(); void searchitem(); void removeproduct(); void searchitem(); void outofstock(); int generatebillno(); void placeorder(); char *getnamefromfile(int i); void headingoforderdetails(); void getorderfromfile(int ); class bill { protected: int billno; public: bill() { billno=0; } int getbillno()                      { return billno; } void setbillno(int b) { b...