Here you will get C++ hotel management project. This system provides various options like booking a room, checking customer details, editing or deleting any customer, checking all allotted rooms. The project is developed using two important C++ concepts that are classes and file handling.
C++ Hotel Management Project
#include<iostream.h> #include<conio.h> #include<fstream.h> #include<stdio.h> #include<dos.h> class hotel { int room_no; char name[30]; char address[50]; char phone[10]; public: void main_menu(); //to dispay the main menu void add(); //to book a room void display(); //to display the customer record void rooms(); //to display alloted rooms void edit(); //to edit the customer record int check(int); //to check room status void modify(int); //to modify the record void delete_rec(int); //to delete the record }; void hotel::main_menu() { int choice; while(choice!=5) { clrscr(); cout<<"\n\t\t\t\t*************"; cout<<"\n\t\t\t\t* MAIN MENU *"; cout<<"\n\t\t\t\t*************"; cout<<"\n\n\n\t\t\t1.Book A Room"; cout<<"\n\t\t\t2.Customer Record"; cout<<"\n\t\t\t3.Rooms Allotted"; cout<<"\n\t\t\t4.Edit Record"; cout<<"\n\t\t\t5.Exit"; cout<<"\n\n\t\t\tEnter Your Choice: "; cin>>choice; switch(choice) { case 1: add(); break; case 2: display(); break; case 3: rooms(); break; case 4: edit(); break; case 5: break; default: { cout<<"\n\n\t\t\tWrong choice!!!"; cout<<"\n\t\t\tPress any key to continue!!"; getch(); } } } } void hotel::add() { clrscr(); int r,flag; ofstream fout("Record.dat",ios::app); cout<<"\n Enter Customer Detalis"; cout<<"\n **********************"; cout<<"\n\n Room no: "; cin>>r; flag=check(r); if(flag) cout<<"\n Sorry..!!!Room is already booked"; else { room_no=r; cout<<" Name: "; gets(name); cout<<" Address: "; gets(address); cout<<" Phone No: "; gets(phone); fout.write((char*)this,sizeof(hotel)); cout<<"\n Room is booked!!!"; } cout<<"\n Press any key to continue!!"; getch(); fout.close(); } void hotel::display() { clrscr(); ifstream fin("Record.dat",ios::in); int r,flag; cout<<"\n Enter room no: "; cin>>r; while(!fin.eof()) { fin.read((char*)this,sizeof(hotel)); if(room_no==r) { clrscr(); cout<<"\n Cusromer Details"; cout<<"\n ****************"; cout<<"\n\n Room no: "<<room_no; cout<<"\n Name: "<<name; cout<<"\n Address: "<<address; cout<<"\n Phone no: "<<phone; flag=1; break; } } if(flag==0) cout<<"\n Sorry Room no. not found or vacant!!"; cout<<"\n\n Press any key to continue!!"; getch(); fin.close(); } void hotel::rooms() { clrscr(); ifstream fin("Record.dat",ios::in); cout<<"\n\t\t\tList Of Rooms Allotted"; cout<<"\n\t\t\t*********************"; cout<<"\n\n Room No.\tName\t\tAddress\t\tPhone No.\n"; while(!fin.eof()) { fin.read((char*)this,sizeof(hotel)); cout<<"\n\n "<<room_no<<"\t\t"<<name; cout<<"\t\t"<<address<<"\t\t"<<phone; } cout<<"\n\n\n\t\t\tPress any key to continue!!"; getch(); fin.close(); } void hotel::edit() { clrscr(); int choice,r; cout<<"\n EDIT MENU"; cout<<"\n *********"; cout<<"\n\n 1.Modify Customer Record"; cout<<"\n 2.Delete Customer Record"; cout<<"\n Enter your choice: "; cin>>choice; clrscr(); cout<<"\n Enter room no: "; cin>>r; switch(choice) { case 1: modify(r); break; case 2: delete_rec(r); break; default: cout<<"\n Wrong Choice!!"; } cout<<"\n Press any key to continue!!!"; getch(); } int hotel::check(int r) { int flag=0; ifstream fin("Record.dat",ios::in); while(!fin.eof()) { fin.read((char*)this,sizeof(hotel)); if(room_no==r) { flag=1; break; } } fin.close(); return(flag); } void hotel::modify(int r) { long pos,flag=0; fstream file("Record.dat",ios::in|ios::out|ios::binary); while(!file.eof()) { pos=file.tellg(); file.read((char*)this,sizeof(hotel)); if(room_no==r) { cout<<"\n Enter New Details"; cout<<"\n *****************"; cout<<"\n Name: "; gets(name); cout<<" Address: "; gets(address); cout<<" Phone no: "; gets(phone); file.seekg(pos); file.write((char*)this,sizeof(hotel)); cout<<"\n Record is modified!!"; flag=1; break; } } if(flag==0) cout<<"\n Sorry Room no. not found or vacant!!"; file.close(); } void hotel::delete_rec(int r) { int flag=0; char ch; ifstream fin("Record.dat",ios::in); ofstream fout("temp.dat",ios::out); while(!fin.eof()) { fin.read((char*)this,sizeof(hotel)); if(room_no==r) { cout<<"\n Name: "<<name; cout<<"\n Address: "<<address; cout<<"\n Pone No: "<<phone; cout<<"\n\n Do you want to delete this record(y/n): "; cin>>ch; if(ch=='n') fout.write((char*)this,sizeof(hotel)); flag=1; } else fout.write((char*)this,sizeof(hotel)); } fin.close(); fout.close(); if(flag==0) cout<<"\n Sorry room no. not found or vacant!!"; else { remove("Record.dat"); rename("temp.dat","Record.dat"); } } void main() { hotel h; textmode(C80); textbackground(WHITE); textcolor(RED); clrscr(); cout<<"\n\t\t\t****************************"; cout<<"\n\t\t\t* HOTEL MANAGEMENT PROJECT *"; cout<<"\n\t\t\t****************************"; sleep(2); cout<<"\n\n\n\n\t\tMade By:"; sleep(2); cout<<" The Crazy Programmer"; sleep(2); cout<<"\n\n\n\n\n\t\t\t\tPress any key to continue!!"; getch(); h.main_menu(); }
Output
it gets error message
What kind of error you are getting?
i am getting error in iostream.h file SIR please help me!
instead of iostream.h try iostream . but you will also need ” using namespace std;”.
Remove. h
I am getting error in delete function after deleting when i display it starts infinite loop
paste the read function again inside the while after the else statement like
while(){
…
if(){
..}else
..
fin.read((char*)this,sizeof(hotel));
…
}
sir , program is not getting executed properly
I am not getting output properly
Sir,
please send the correct code for hotel management in c++
it give error in clrscr() and textbackground(white)
no more interesting projects?
hey..
i want to make project on
Design and Develop a Power Spread Sheet (PSS) program (much like MS Excel / Lotus 123) that can be used to edit & save data.(in oop n cpp)
but still i could not get any data.
please suggest me any site ..
with the modify rooms doesn’t work because it asks me about room no and they will say the room is not vacant or not found so there is no way of modifying rooms
Include in the header files and remove
Yes it is given many errors
Problem with: clrscr, sleep and all expressions connected with colors (textbackground, textcolor, RED, C80, WHITE)…
hey you get a solution of this
I used this code in C (with modification) but it went in infinite loop in selection menu,
here it is code.
do
{
printf("ntttt*************");
printf("ntttt* Welcome *");
printf("ntttt*************");
printf("nttt1.Add Patient Data");
printf("nttt2.View Data");
printf("nttt3.Modify Data");
/*printf("nttt4.Delete Data");
printf("nttt5.Search Data");
printf("nttt6.Exit"); */
printf("nntttEnter Your Choice: ";*/
scanf("%d",&ch);
switch(ch) // Switch case Starting.
{
case 1:
clrscr();
petdet();
break;
case 2:
break;
case 3:break;
default:
clrscr();
printf("Enter Proper Choice.");
break;
}
}while(ch!=3)
why it shows many error when using visual C++ ?
Which compiler have you used to code and run the program?
Plezzz give me its algorithm c++
There is error in the program-
1.it works on dos box
2.in void hotel::display() the Records.dat will be Record.dat
25 errors wat to do now….
this programming code has got many error ………..
and it is not showing desired output
hii
i have use this program but getting run time errors
can u plzz help me.
while runnin g the program i put the details and if i want to see that alloted rooms the i get is that the is vacant .
soo plzz reply as soon as possible
BUT WHEN I DO THAT I GET TWO RECORDS OF THE IMMEDIATE PREVIOUS RECORD I ADDED!
PLEASE HELP……
use this in void::rooms() function which will solve your problem
while(!fin.eof())
{
fflush(stdin);
fin.read((char*)this,sizeof(hotel));
if(!fin.eof()){
cout<<"\n\n "<<room_no<<"\t\t"<<name;
cout<<"\t\t"<<address<<"\t\t"<<phone;
}
}
Give a function to find non allocated rooms in a hotel management project in c++
l like this program .
thank you very much
Can I get code for hostel management system as fast as possible plz..
I am creating a project of c++ on hotel management but it doesn’t work properly and creates error.
please rectify all the errors and make it look proper.
here it begins
#include
#include
#include
#include
#include
#include
#include
#include
#include
class hotel
{
char cmr[30],avl,customer[30],city[20];
int grp,per,year,mon,days,day,room_no;
long mobno;
public: int getname(char cmr[30]);
void input()
{
clrscr();
textbackground(0);
textcolor(LIGHTRED);
gotoxy(32,4);
cputs(“BOOKING COUNTER”);
gotoxy(5,8);
cputs(“Name of the customer :”);
gotoxy(5,10);
cputs(“Number Of days to stay :”);
gotoxy(5,12);
cputs(“Name of the city :”);
gotoxy(5,14);
cputs(“Number of group members:”);
gotoxy(5,16);
cputs(“Customer mobile number:”);
gotoxy(5,18);
cputs(“Enter the date of arrival:”);
cout<>per;
gotoxy(45,12);
gets(city);
gotoxy(45,14);
cin>>grp;
gotoxy(45,16);
cin>>mobno;
gotoxy(45,20);
cin>>year;
gotoxy(45,22);
cin>>mon;
gotoxy(45,24);
cin>>day;
gotoxy(5,30);
cout<<"\n… Room is booked for "<<customer<<" for "<<per<<" days.";
strcpy(cmr,customer);
days=per;
avl='N';
}
void display();
int getstat(int st);
};
void hotel :: display()
{
hotel h;
clrscr();
getch();
ifstream fin("hotel.txt",ios::in|ios::binary|ios::app);
int r,flag;
cout<>r;
while(!fin.eof())
{
fin.read((char*)&h,sizeof(h));
if(room_no==r)
{
clrscr();
cout<<"\n\n\t\t\t** CUSTOMER DETAILS **";
cout<<"\n \t\t\t________________________";
cout<<"\n\n\nRoom number : "<<room_no;
cout<<"\n\nName : "<<customer;
cout<<"\n\nPhone no. : "<<mobno;
cout<<"\n\nGroup members : "<<grp;
cout<<"\n\nDays of stay : "<<per;
flag=1;
break;
}
if(flag==0)
cout<<"\n\nROOM IS VACANT …..!!!!!";
cout<<"\n\nPRESS ANY KEY TO CONTINUE :…!!";
getch();
fin.close();
}
}
int hotel::getname(char comr[30])
{
hotel h;
int check;
ifstream fin("hotel.txt",ios::app|ios::in|ios::binary);
while(!fin.eof())
{
fin.read((char*)&h,sizeof(h));
if(strcmp(comr,cmr)==0)
{
check=1;
break;
}
}
fin.close();
return (check);
}
int hotel::getstat(int st)
{
hotel h;
int flag=0;
ifstream fin("hotel.txt",ios::in|ios::binary|ios::app);
while(!fin.eof())
{
fin.read((char*)&h,sizeof(h));
if(st==room_no)
{
flag=1;
break;
}
}
fin.close();
return(flag);
}
void LUX_S();
void LUX();
void DLX_S();
void DLX();
void GEN();
void login()
{
clrscr() ;
char pw1, pw2, pw3 ;
gotoxy(30,12) ;
cout<<"Enter the password : " ;
pw1=getch() ;
cout<<"*" ;
pw2=getch() ;
cout<<"*" ;
pw3=getch() ;
cout<<"*" ;
getch();
if (pw1 == 'S' && pw2 == 'A' && pw3 == 'S')
{
return;
}
clrscr();
cout<<" WRONG PASSWORD " ;
getch() ;
exit(0) ;
}
void pg1()
{
cout<<"\n\n\n\n"
<<"\t\t\t*********************************** \n"
<<"\t\t\t* COMPUTER SCIENCE PROJECT WORK * \n"
<<"\t\t\t*********************************** \n"
<<"\n"
<<"\t\t\t\1\1\1\1\1\1\1\1 HOTEL MANAGEMENT \1\1\1\1\1\1\1\1\n\n";
cout<<"\t\t\t \4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4 \n"
<<"\t\t\t \4 WONDERLAND HOTEL \4 \n"
<<"\t\t\t \4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4\4 \n\n"
<<"\t\t\t ***OWNERS*** \n"
<<"\n";
cout<<"\t\t\t \6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\n"
<<"\t\t\t NAME:- AAYUSHI JAIN \n"
<<"\t\t\t SAMIDHA AGARWAL \n"
<<"\t\t\t SHREYA RAI \n"
<<"\t\t\t CLASS:- XII – ' B ' \n"
<<"\t\t\t \6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6\6 \n\n";
}
void dll()
{
cout<<"\n\n\n\n\n\n\t\tPLEASE WAIT WHILE LOADING THE PROJECT";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(350);
cout<<".";
delay(400);
}
void main()
{
fstream fin,fout;
int ch;
char wish,rec;
hotel h;
clrscr();
textcolor(RED);
textbackground(WHITE);
login();
clrscr();
getch();
textcolor(YELLOW);
textbackground(BROWN);
pg1();
getch();
clrscr();
dll();
clrscr();
xyz:
getch();
textcolor(LIGHTCYAN);
textbackground(BLACK);
clrscr();
cout<<"+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
cout<<"\n======================== Main Menu =======================";
cout<<"\n _____________ ";
cout<<"\n——————————————————————————–";
cout<<"\n++++++++++++++++++++++++++++++++++++++++++++++\n";
cout<<"++ 1.HOTEL DETAILS AND ROOM NO. ++\n";
cout<<"++ :2.CUSTOMER INFORMATION ++\n";
cout<<"++ 3.MODIFY INFORMATION ++\n";
cout<<"++ :4.BOOK A ROOM ++\n";
cout<<"++ :5.DETAILS OF ROOM ++\n";
cout<<"++ 6.CREATE BILL (CHECKOUT) ++\n";
cout<<"++ :7.DISPLAY ALL CUSTOMERS ++\n";
cout<<"++ :8.EXIT ++\n";
cout<<"++++++++++++++++++++++++++++++++++++++++++++++\n";
cout<>ch;
if(ch>8)
{
clrscr();
cout<<"\n Wrong choice ….";
getch();
goto xyz;
}
//********************
//2.CUSTOMER INFORMATION
//********************
if(ch==2)
{
int rmno,choice;
char cust_name[30];
get:
getch();
clrscr();
getch();
cout<<"Search customer on the basis of \n";
cout<<"\5 1.Customer Name \n";
cout<>choice;
if(choice>2)
{
cout<<"\nOOPs Wrong Entry "<<endl;
cout<<"Enter again : ";
getch();
goto get;
}
if(choice==1)
{
int check;
cout<<"Enter customer name : ";
gets(cust_name);
fin.open("hotel.txt",ios::in|ios::binary|ios::app);
check=h.getname(cust_name);
while(fin.read((char*)&h,sizeof(h)))
{
if(check==1)
h.display();
else
cout<<"\n\nCOSTOMER NOT FOUND ";
}
}
if(choice==2)
{
int flag;
cout<>rmno;
flag= h.getstat(rmno);
fin.open(“hotel.txt”,ios::in|ios::app|ios::binary);
while(fin.read((char*)&h,sizeof(h)))
{
if(flag==0)
{
h.display();
break;
}
}
}//if(choice==2)
}//if(ch==2)
//********************
//4.BOOK A ROOM
//********************
if(ch==4)
{
int rmno,flag;
clrscr();
fout.open (“hotel.txt”,ios::out|ios::binary|ios::app);
do
{
cout<>rmno;
flag=h.getstat(rmno);
if(flag)
cout<<"\n\nSORRY ROOM ALREADY BOOKED…..!!";
else
{
h.input();
fout.write((char*)&h,sizeof(h));
cout<>wish;
}
}
while(wish==’y’||wish==’Y’);
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}
//**************************
//5.DETAILS OF ROOM
//**************************
if (ch==5)
{
int rmno;
getch();
clrscr();
cout<<"\n\n\t\t\tROOM NO. | TYPE "
<<"\n\n\t\t\t 1 GENERAL "
<<"\n \t\t\t 2 DELUX "
<<"\n \t\t\t 3 SUPER DELUX "
<<"\n \t\t\t 4 LUXURY "
<<"\n \t\t\t 5 SUPER LUXURY "
<>rmno;
getch();
clrscr();
if(rmno==1)
{
GEN();
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}
if(rmno==2)
{
DLX();
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}
if(rmno==3)
{
DLX_S();
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}
if(rmno==4)
{
LUX();
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}
if(rmno==5)
{
LUX_S();
getch();
clrscr();
getch();
cout<>rec;
if(rec==’y’||rec==’Y’)
{
goto xyz;
}
else
{
exit(0);
}
}//end of if(rmno==5)
}//end of if(ch==5)
//*******************
//7.DISPLAY ALL
//*******************
if(ch==7)
{
h.display();
getch();
}
//*******************
//8.EXIT
//*******************
if(ch==8)
{
clrscr();
getch();
cout<<"\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS\n\n\n\t\t\t\tPress any key to Exit…….";
getch();
exit(0);
}
}//End of void main
void GEN()
{
clrscr();
cout<<"\n FEATURES OF THIS ROOM ";
cout<<"\n******************************************************************";
cout< GENERAL “;
cout< Rs.10000 / day”;
cout< 2 single beds”;
cout< 2 adults”;
cout<<"\n******************************************************************";
cout<<"\n ADDITIONAL FACILITY ";
cout<<"\n******************************************************************";
cout<<"\n\n \6\tGeyser ";
cout<<"\n\n \6\tTV ";
cout<<"\n\n \6\tFREE 1 DAY ROOM SERVICE ON BOOKING FOR 5 DAYS";
cout<<"\n******************************************************************";
}
void DLX()
{
clrscr();
cout<<"\n FEATURES OF THIS ROOM ";
cout<<"\n******************************************************************";
cout< DELUX “;
cout< Rs.20000 / day”;
cout< 2 ( 1 single 1 double )”;
cout< 4 ( 3 adults 1 child )”;
cout<<"\n******************************************************************";
cout<<"\n ADDITIONAL FACILITY ";
cout<<"\n******************************************************************";
cout<<"\n\n \6\tCooler ";
cout<<"\n\n \6\tGeyser ";
cout<<"\n\n \6\tTV ";
cout<<"\n\n \6\tFREE 1 DAY ROOM SERVICE ON BOOKING FOR 4 DAYS";
cout<<"\n******************************************************************";
}
void DLX_S()
{
clrscr();
cout<<"\n FEATURES OF THIS ROOM ";
cout<<"\n******************************************************************";
cout< DELUX SUIT “;
cout< Rs.30000 / day”;
cout< 2 double beds”;
cout< 4 ( 2 adults & 2 children )”;
cout<<"\n******************************************************************";
cout<<"\n ADDITIONAL FACILITY ";
cout<<"\n******************************************************************";
cout<<"\n\n \6\tA.C.";
cout<<"\n\n \6\tGeyser ";
cout<<"\n\n \6\tTV ";
cout<<"\n\n \6\tMini Fridge";
cout<<"\n\n \6\tScenic Balcony";
cout<<"\n******************************************************************";
}
void LUX()
{
clrscr();
cout<<" FEATURES OF THIS ROOM ";
cout<<"\n******************************************************************";
cout< LUXURY “;
cout< Rs.45000 / day”;
cout< 2 double beds”;
cout< 4 ( 2 adults & 2 children )”;
cout<<"\n******************************************************************";
cout<<"\n ADDITIONAL FACILITY ";
cout<<"\n******************************************************************";
cout<<" \n \6\tA.C.";
cout<<"\n\n \6\tGeyser ";
cout<<"\n\n \6\tTV ";
cout<<"\n\n \6\tMini Fridge";
cout<<"\n\n \6\tBath Tub ";
cout<<"\n\n \6\tGathering Room";
cout<<"\n******************************************************************";
}
void LUX_S()
{
clrscr();
cout<<" FEATURES OF THIS ROOM ";
cout<<"\n******************************************************************";
cout< LUXURY SUIT “;
cout< Rs.50000 / day”;
cout< 2 double beds”;
cout< 4 ( 2 adults & 2 children )”;
cout<<"\n******************************************************************";
cout<<"\n ADDITIONAL FACILITY ";
cout<<"\n******************************************************************";
cout<<" \n \6\t2 A.C.'s";
cout<<"\n\n \6\tTV ";
cout<<"\n\n \6\tMini Fridge";
cout<<"\n\n \6\tJacuzzi and Geyser";
cout<<"\n\n \6\tGathering Room with A.C.";
cout<<"\n\n \6\tFree Wine and Champagne for couples ";
cout<<"\n******************************************************************";
}
please reply as soon as possible
did you get the correct code??
last value in the rooms are get repeated, last line is printing twice
sir kindly tell me how to make hotel management project in c++ using string,functions,pointers,structures only.kindly tell me as soon as possible.
the programs works perfectly thank u 🙂
I’m getting only one error
Identifier ‘check’ cannot have a type qualifier
Hiii..can u help me too find out error
I am getting an error like conic.h:No such file or directory even though i have included “using namespace std;”
i liked you
there is an error which says “MUST USE C++ FOR THE TYPE IOSTREAM”
please tell me how to rectify it…….
Save the program with .cpp extension to remove this error.
the delete function is not working please help
Compiler problem
Sir the program runs correctly but when I want to check the allotted rooms the last entry is repeated twice, also I can’t anything but the first entry. And once I edit the first entry the allocation table gets messed up. I need the solution. ASAP.
Can I get d flow chart of this
bhai mila kya iska flow chart???
Can i please get a pdf file..or .cpp file for this..
Can u please tell me that the file record.dat should be made first then we can open it..
project is very helpful mr. neeraj mishra, thank you 🙂
is programme ma error hain
what do sleep funtion do
DELETE FUNCTION IS NOT WORKING. PLZ HELP ASAP!!!!
Pls give me a short descrion of the full project immly.
Since I am preparing for my practical project based on this.
Pls send it to my mail today itself
souravgsgupta1093@gmail. Com
pls help me with this
ofstream fout(“Record.dat”,ios::app);
what is sleep function doing
also textcolor and textbackground functions are not executed
In turbo c++, the program runs correctly but when I want to check the allotted rooms the last entry is repeated twice. And once I edit the first entry the allocation table gets messed up. I need the solution. ASAP.
In visual studio, There is an error in clrscr, sleep and all expressions connected with colors (textbackground, textcolor, RED, C80, WHITE)
Sir I want a library management system code
As soon as possible . please use DEV or visual studio
If it is possible
I am getting logical error…after execution of program i’m not getting proper answer or output
So please help me
Why this project not write all data in file,, it create file but not write in file or read plzzzz tell as soon as possible
There is literally no error . Only just semicolon error in the display function and some bracket problem. Otherwise the program is ok . It could be more good if it had the the prices of room and like it might ask to write ur pno again if the Pno is not 10 digit number
Sir it give declaration syntax error on turbo c++
Does anyone here know to do c++ programme looping coding for accesscard for each level of an appartment.For example, there are 16 level in a appartment
I am getting a logical error where the compiler asks 2 times whether to delete or not
Thank you very much Sir.
I executed This in turbo c++, it compiled and run successfully without errors!
WORKS PERFECTLY!!
Thnks a lot sir!
To all those having errors run it on turbo c++,it will run smoothly.
Sir pls give me questions asked by examiner on this program of hotal management
Bro do u have a project on restaurant management??
sir please provide its flowchart
void hotel::main_menu()
{
int choice;
while(choice!=5)
has an error
I didnt understand the step
flag =check(r);
IT’S 100% NOT WORKING
Could you please write for me a code for students leave application and management
Linker Error: Undefined symbol _main in module c0.ASM how to fix this
Write a menu driven program that manages the availability and booking of 10 hotel rooms
Sir, I am a student in grade 8, i have an interest to learn c++ since it is being taught to us in school. So, i was seeing a youtube video just to understand the code and in the video they showed that to make games with c++ you first need to make a file with visual basic. And luckily i had visual basic downloaded in my device ,so i completed the code in visual basic and when i debugged it there were errors saying “dir” is unidentified. I used “dir=STOP” once in the code. I am struggling to understand what the error is, i was browsing through the internet for some reference and i found this website so, i saw that you answer some comments.I hope you can help me in some way.