#include using namespace std; int main() { //converts day (in numeric form) to day of the week cout<<"Enter day of the week in number form :"; char day; cin>>day; //Here, we only print an error message when the user enters a wrong value //This demonstrates a switch statement when the expression is of char type //That is why the constants are single quoted. //If it were of any of the other 3 integer types, then the constants wouldn't be quoted. switch(day) { case '1': cout<<"Today is Monday"<