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
|
double a, b;
void Palawan(){
system ("cls");
system("COLOR f1");
cout << "\n\n PALAWAN\n";
cout << "\n\nEnter The Number Of Travlers:\n";
cin>> a;
if ( a < 2)
cout << "\nStandard Room \n";
else if ( a < 3)
cout << "\nDeluxe Twin Bedroom \n";
else if ( a >= 3 && a <= 50 )
cout << "\nFamily Room \n";
cout << "\n\nHow much is your budget?:\n\n";
cin>> b;
if ( b < 2999)
cout << "Sorry we do not have available hotels with that price range. Please try again. \n";
else if ( b >= 3000 && b <= 5000)
cout << "We recommend Busuanga Bay Lodge,for more info you can visit their own website at: http://www.busuangabaylodge.com/ \n";
else if ( b >=5001 && b <= 10000)
cout << "We recommend El Nido Beach Hotel,for more info you can visit their own website at: http://www.elnidobeachhotel.com/ \n";
else
cout << "We recommend Sheridan Beach Resort and Spa,for more info you can visit their own website at: http://www.sheridanbeachresort.com/ \n";}
double c, d;
void Baguio(){
system ("cls");
system("COLOR f2");
cout << "\n\n BAGUIO\n";
cout << "\n\n Enter The Number Of Travlers:\n";
cin>> c;
if ( c < 2)
cout << "\nStandard Room \n";
else if ( c < 3)
cout << "\nDeluxe Twin Bedroom \n";
else if ( c >= 3 && c <= 50 )
cout << "\nFamily Room \n";
cout << "\n\nHow much is your budget?:\n\n";
cin>> d;
if ( d < 2999)
cout << "Sorry we do not have available hotels with that price range. Please try again. \n";
else if ( d >= 3000 && d <= 5000)
cout << "We recommend Hotel Supreme Convention Plaza,for more info you can visit their own website: http://hotelsupreme.com.ph/about-the-hotel/ \n";
else if ( d >=5001 && d <= 10000)
cout << "We recommend Casa Vallejo Hotel,for more info you can visit their own website: http://casavallejohotel.com/index.html \n";
else
cout << "We recommend Azalea Hotels & Residences Baguio,for more info you can visit their own website: http://www.azaleabaguio.com/ \n";}
double e, f;
void Bicol(){
system ("cls");
system("COLOR f3");
cout << "\n\n BICOL\n";
cout << "\n\nEnter The Number Of Travlers:\n";
cin>> e;
if ( e < 2)
cout << "\nStandard Room \n";
else if ( e < 3)
cout << "\nDeluxe Twin Bedroom \n";
else if ( e >= 3 && e <= 50 )
cout << "\nFamily Room \n";
cout << "\n\nHow much is your budget?:\n\n";
cin>> f;
if ( f < 2999)
cout << "Sorry we do not have available hotels with that price range. Please try again. \n";
else if ( f >= 3000 && f <= 5000)
cout << "We recommend Ninong's Hotel,for more info you can visit their own website: http://ninongshotel.com.ph/rooms.html \n";
else if ( f >=5001 && f <= 10000)
cout << "We recommend The Oriental Hotel Legazpi,for more info you can visit their own website: http://www.legazpi.theorientalhotels.com/ \n";
else
cout << "We recommend Casablanca Suites,for more info you can visit their own website: http://www.casablancasuites.ph/ \n";}
double g, h;
void Cebu(){
system ("cls");
system("COLOR f4");
cout << "\n\n CEBU\n";
cout << "\n\nEnter The Number Of Travlers:\n";
cin>> g;
if ( g < 2)
cout << "\nStandard Room \n";
else if ( g < 3)
cout << "\nDeluxe Twin Bedroom \n";
else if ( g >= 3 && g <= 50 )
cout << " Family Room \n";
cout << "\n\nHow much is your budget?:\n\n";
cin>> h;
if ( h < 2999)
cout << "Sorry we do not have available hotels with that price range. Please try again. \n";
else if ( h >= 3000 && h <= 5000)
cout << "We recommend WellCome Hotel,for more info you can visit their own website: http://wellcomehotel.com/ \n";
else if ( h >=5001 && h <= 10000)
cout << "We recommend Castle Peak Hotel,for more info you can visit their own website: http://www.castlepeakhotel.net/ \n";
else
cout << "We recommend The Henry Hotel Cebu,for more info you can visit their own website: http://www.thehenryhotel.com/thehenrynew/cebu/ \n";}
double i, j;
void Vigan(){
system("COLOR f5");
system ("cls");
cout << "\n\n VIGAN\n";
cout << "\n\n Enter The Number Of Travlers:\n";
cin>> i;
if ( i < 2)
cout << "\nStandard Room \n";
else if ( i < 3)
cout << "\nDeluxe Twin Bedroom \n";
else if ( i >= 3 && i <= 50 )
cout << "\nFamily Room \n";
cout << "\n\nHow much is your budget?:\n\n";
cin>> j;
if ( j < 2999)
cout << "Sorry we do not have available hotels with that price range. Please try again. \n";
else if ( j >= 3000 && j <= 5000)
cout << "We recommend Hotel Felicidad ,for more info you can visit their own website: https://www.hotelfelicidadvigan.com.ph/home \n";
else if ( j >=5001 && j <= 10000)
cout << "We recommend Hotel Veneto de Vigan ,for more info you can visit their own website: http://hotelvenetodevigan.com/ \n";
else
cout << "We recommend Hotel Luna,for more info you can visit their own website: http://hotelluna.ph/ \n";}
|