Days of the week
Write a program that asks the user for a number in the range of 1 through 7. The program should display the corresponding day of the week, where 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday, and 7 = Sunday. The program should display an error message if the user enters a number that is outside of the range of 1 though 7.
#include <iostream>
#include <string>
using namespace std;
int main()
{
int Day;
cout<<"Enter the day: ";
cin>>Day; // INPUT
if (Day == 1){ //CASES
cout<<"Monday";
}
else if (Day==2){
cout<<"Tuesday";
}
else if (Day==3){
cout<<"Wednesday";
}
else if (Day==4){
cout<<"Thursday";
}
else if (Day==5){
cout<<"Friday";
}
else if (Day==6){
cout<<"Saturday";
}
else if (Day==7){
cout<<"Sunday";
}
else{ //BAD CASE
cout<<"outside of the range of 1 though 7"<<endl;
}
}
OUTPUT:
IF YOU HAVE ANY QUERY PLEASE COMMENT DOWN BELOW
PLEASE GIVE A THUMBS UP
Get Answers For Free
Most questions answered within 1 hours.