Hi guys,I'm fairly new in C++ (3rd day) and I'm trying to apply the enum operator. So I tried to write a program that determines whether the user indicated (via cin) a weekend or a business day (week day). The problem is the program cannot determine if its a weekend. How can I make this program work?
case Monday:
case Teusday:
case Wednesday:
case Thursday:
case Friday:
cout << "Business day!!!";
break;
case Saturday:
case Sunday:
cout << "Weekend!!!";
break;
default:
cout << "Not a valid day!";
break;