Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program that allows a user to enter a string containing a day of the week (Sunday, Monday, Tuesday, etc.) and uses a
Write a program that allows a user to enter a string containing a day of the week ("Sunday," Monday," "Tuesday," etc.) and uses a switch construct to convert the day to its corresponding number, where Sunday is considered the first day of the week and Saturday is considered the last day of the week. Print out the resulting day number. Also, be sure to handle the case of an illegal day name! (Note: Be sure to use the 's' option on function input so that the input is treated as a string.) Your result should look like >> inclass2 Enter the day of the week: Thursday Thursday is day 5 of the week. >> inclass2 Enter the day of the week: Weekend Invalid day entered. 20 Write a program that allows a user to enter a string containing a day of the week ("Sunday," Monday," "Tuesday," etc.) and uses a switch construct to convert the day to its corresponding number, where Sunday is considered the first day of the week and Saturday is considered the last day of the week. Print out the resulting day number. Also, be sure to handle the case of an illegal day name! (Note: Be sure to use the 's' option on function input so that the input is treated as a string.) Your result should look like >> inclass2 Enter the day of the week: Thursday Thursday is day 5 of the week. >> inclass2 Enter the day of the week: Weekend Invalid day entered. 20
Step by Step Solution
★★★★★
3.47 Rating (147 Votes )
There are 3 Steps involved in it
Step: 1
TestCodem day inputEnter day of week s switch day case Sund...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started