I want a calender to appear, making it so that the customer can chose the dates.
#include <iostream>
#include <string>
#include <ctime>
using namespace std;
double SubTotal=0.00,Total=0.00, Dis=0.00, DisGCH=0.40, DisConf=0.15, DisSpec=0.05;
int NoOfDays=0, TelNumber, CreditCN, GoldCN, RPriceSing=175.00, RPriceDoub=250.00, ConfN;
string LName, FName, Address,Occupancy, DisType,GoldCardHolder,ConfDel, CheckInDate;
int main(){
cout<< "WELCOME TO SANDY SHORES BEACH HOTEL"<<endl;
cout<< "Select Check In Date"<<endl;
cin >>CheckInDate>>endl;
// current date/time based on current system
time_t now = time(0);
// convert now to string form
char* dt = ctime(&now);
cout << "The local date and time is: " << dt << endl;
// convert now to tm struct for UTC
tm *gmtm = gmtime(&now);
dt = asctime(gmtm);
cout << "The UTC date and time is:"<< dt << endl;
cin>> dt >>endl;
}