Posts

Showing posts from February, 2022

Hotel

#include <iostream> #include <cstring> using namespace std ; int main () {     int ch, floor, room;     string name [ 10 ][ 20 ];     int FloorRoom [ 10 ][ 20 ] = {};     for ( int i = 0 ; i < 10 ; i++)     {         for ( int j = 0 ; j < 20 ; j++)         {             name [i][j] = "Not Booked" ;         }     }     for (;;)     {         cout << "Enter Your Choice= " << endl              << "1-To Book The Room " << endl              << "2-To display the Booked Room of the Hotel " << endl              << "3-To display the Empty Rooms of the Hotel " << endl              << "4...