1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
#include <iostream>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
using namespace std;
class Room{
private:
int Windows;
int Doors;
int Cupboards;
public:
void choiceM();
void menu();
void BedroomType();
void createRoom(int Doors, int Windows, int Cupboards, int d, int w, int c)
{
Doors = d;
Windows = w;
Cupboards = c;
}
void ShowR()
{
cout<<""<<Doors<<"Door(s)"<<endl;
cout<<""<<Windows<<"Window(s)"<<endl;
cout<<""<<Cupboards<<"Cupboard(s)"<<endl;
}
void displayMain ();
void displayMenu();
void addRoom ();
void deleteRoom ();
void editRoom ();
void displayRoom ();
};
Room* r;
void GetR(int, char*);//member function: retrieve room details
void CreateR(int); //member function: create room
class Bathroom:public Room
{
private:
int Bath;
int Shower;
int Toilet;
public:
Bathroom():Room()//constructor
{Bath = Shower = Toilet = 0; }
void CreateBathroom(int bath, int shower, int toilet, int b, int s, int t, int d, int w, int c)
{
//set bathroom variables
CreateRoom (int Doors, int Windows, int Cupboards, int d, int w, int c);{
Bath = b;
Shower = s;
Toilet = t;
}
void ShowB()
{
//display bathroom details
ShowR();
cout<<""<<Bath<<"Bath(s)"<<endl;
cout<<""<<Shower<<"Shower(s)"<<endl;
cout<<""<<Toilet<<"Toilet(s)"<<endl;
}
};
Bathroom* b;
void CreateB(int);
class Bedroom:public Room
{
private:
int Bed;
int Lamp;
int Pillow;
public:
Bedroom():Room()
{Bed = Lamp = Pillow = 0; }
void CreateBedroom(int Bed, int Lamp, int Pillow, int e, int l, int p, int d, int w, int c)
{
createRoom(d,w,c,e,p,l);
Bed= e;
Pillow = p;
Lamp = l;
}
void ShowBr()
{
//display Bedroom details
ShowR();
cout<<""<<Bed<<"Bed(s)"<<endl;
cout<<""<<Lamp<<"Lamp(s)"<<endl;
cout<<""<<Pillow<<"Pillow(s)"<<endl;
}
};
class SingleRoom:public Bedroom
{
private:
int Computer;
int Shelves;
int Fans;
public:
SingleRoom():Bedroom()
{Computer = Shelves = Fans = 0;}
void CreateSingleBedroom(int Computer, int Shelves, int Fans, int x, int y, int z, int d, int w, int c, int e, int p, int l)
{
createRoom(d,w,c,x,y,z);
createBedroom(e,p,l);
Computer= x;
Shelves = y;
Fans = z;
}
void ShowSBR()
{
//display Single Bedroom details
ShowBr();
ShowR();
cout<<""<<Computer<<"Computer(s)"<<endl;
cout<<""<<Shelves<<"Shelves(s)"<<endl;
cout<<""<<Fans<<"Fan(s)"<<endl;
}
};
class DoubleRoom:public Bedroom
{
private:
int StudyTable;
int NightTable;
int Aircond;
public:
DoubleRoom():Bedroom()
{StudyTable = NightTable = Aircond = 0;}
void CreateDoubleBedroom(int StudyTable, int NightTable, int Aircond, int u, int w, int r, int d, int c, int e, int p, int l)
{
createRoom(d,w,c);
createBedroom(e,p,l);
Bed= e;
Pillow = p;
Lamp = l;
}
void showDBR()
{
//display Double Bedroom details
ShowBr();
ShowR();
cout<<""<<StudyTable<<"StudyTable(s)"<<endl;
cout<<""<<NightTable<<"NightTable(s)"<<endl;
cout<<""<<Aircond<<"Aircond(s)"<<endl;
}
int addFurniture;
};
//*******************************************
// Function for Display Room Menu
//*******************************************
void displayMenu(){
cout<<endl;
cout<<"\t============================================";
cout<<"\n\t\t Please Choose Your Room";
cout<<endl;
cout<<"\t============================================";
cout<<endl;
cout<<"t------------|MENU|--------------";
cout<<endl<<endl<<endl;
cout<< "1. Bathroom "<<endl;
cout<< "2. Bedroom "<<endl;
cout<< "3. Back to Main Menu "<<endl;
cout<< "\nEnter your Choice:";
if (num==1){
cout<<"You choose bathroom"<<endl;
}
else if (num==2){
cout<<"You choose bedroom"<<endl;
int Room::ingT(){ // this function only appear on bedroom
int BedroomType=0;
int T;
while (BedroomType!=2){
cout<<endl<<endl;
cout<<"\n\n\t----------|Bedroom Type|--------------"<<endl;
cout<<" Type of Bedroom:"<<endl;
cout<<" 1.Single Room:"<<endl;
cout<<" 2.Double Room:"<<endl;
cout<<"Your Choice:"<<endl;
cin>>T;
switch(T){
case 1:
void showSBR();
break;
case 2:
void showDBR();
break;
default:
cout<<"Invalid Choice"<<endl;
BedroomType= 1;
break;
}//switch
}//while
return 0;
}//ingl
}
else (num==3){
cout<<"You choose back to main menu"<<endl;
}
}
void deleteRoom();
void viewRoom();
void addRoom();
void mainMenu();
void exit();
//******************************************
//Function for Display Main Menu
//******************************************
void displayMain(){
cout<< "\t------------|MENU|--------------";
cout<<endl;
cout<< "\n\t\t1. Add Room";
cout<< "\n\t\t2. View Room";
cout<< "\n\t\t3. Delete Room";
cout<< "\n\t\t4. Exit";
cout<< "\n\t\t5. Main Menu";
cout<< "\nEnter your Choice:";
}
int RoomQ();
int Room();
//****************************************************
// FUNCTION TO ADD ROOM
//****************************************************
void addRoom(string a){
p=head;
if (head==NULL)
head==newRoom(a);
else{
while(p-> next!=NULL)
p=p->next;
p->next=newRoom(a);
}
}
//****************************************************
// FUNCTION TO DELETE ROOM
//****************************************************
void deleteRoom(string m){
temp=head;
p=head;
while(p!=NULL && (p->value)!=m){
temp = p;
p = p->next;
}
del = p;
if(del==NULL){
cout<<"No data is deleted:"<<endl;
cout<<m<<"is not in the list:"<<endl;
}
else{
p=p->next;
temp->next=p;
if (del==head)
head= head->next;
delete del;
cout<<m<<"is deleted:"<<endl;
}
}
//****************************************************
// FUNCTION TO VIEW ROOM
//****************************************************
void viewRoom(string){
cout<<"Room"<<endl;
p=head;
while(p!=NULL){
cout<<p->value<<endl;
p=p->next;
}
}
//****************************************************
// FUNCTION FOR MAIN MENU
//****************************************************
int main(void)
{
Room abc;
repeat:;
cout << "\n\nMENU\n =====\n\n";
cout << "1. Add Room " << endl;
cout << "2. Display Room " << endl;
cout << "3. Delete Room " << endl;
cout << "4. Exit" << endl;
cout << " Please enter an option " << endl;
int option ;
cin >> option;
switch (option)
{
int num;
case 1:
system ("cls");
cout << "Enter the furniture you want to add: ";
cin >> char;
abc.addRoom(char);
goto repeat;
case 2:
system("cls");
abc.display ();
goto repeat;
case 3:
system ("cls");
cout << "Enter the furniture you want to delete :";
cin >> char ;
abc.deleteRoom(char);
goto repeat;
case 4:
exit (0);
default:
system ("cls");
cout << "You enter the wrong option, please re-enter";
goto repeat;
}
return 0;
}
}
|