#include<iostream>
using namespace std;
int main()
{
string weekday;
weekday= {"Mon","Tue","Wed", "Thu","Fri"};
cout<<"\n Please select day of booking:";
cin>>weekday;
cout<<"\n Day of booking:";
return 0;
}
Tips, Expertise, Articles and Advice from the Pro's for Your Website or Blog to Succeed
#include<iostream>
using namespace std;
int main()
{
string weekday;
weekday= {"Mon","Tue","Wed", "Thu","Fri"};
cout<<"\n Please select day of booking:";
cin>>weekday;
cout<<"\n Day of booking:";
return 0;
}