Posts

Showing posts with the label cpp

Hotel-Management-system- in C++ language #28

 #include <iostream> #include <windows.h> #include<iomanip> using namespace std; class company {     //intro of company -. Done     //show availible room --> Done     //show room details --Done public:     void intro(void)     {         cout << "______________________________________________________________________________________________________________________________________" << endl;         char intro[300] = "\n\nWelcome to DOORSTEP hotel renting service\n\nWe hope you are having a great day\nPlease let us know some details regarding your choice , room selection and budget, so we can make you happy with our best service\n\n\n\nWith regards\nTeam Doorstep\n\n";         for (int i = 0; intro[i] != 0; i++)         {             printf("%c", intro[i]);           ...