Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

java public class Exercise 0 7 _ StoreHours { / * Shelia's Seashell Store has a new website. Shelia wants to display if the store

java public class Exercise07_StoreHours {
/*
Shelia's Seashell Store has a new website. Shelia wants to display if the store is open when someone views the website.
The following problems have you implement the logic to indicate if the store is open.
You're given an integer that represents the current hour in each problem.
The store is open if the current hour is equal to or greater than the open time and less than the closing time.
Hours are represented in 24-hour format:
1am =1
2am =2
...
12pm =12
1pm =13
2pm =14
...
11pm =23
12am =0
*/
/*
Shelia's Seashell Store is open between 8 am (hour 8) and 5 pm (hour 17).
Implement the logic to determine if the store is open based on the current hour.
Examples:
isStoreOpen(8) true
isStoreOpen(12) true
isStoreOpen(17) false
isStoreOpen(22) falsepublic boolean isStoreOpen(int currentHour){
return false;
}
/*
Shelia forgot to take into account the day of the week.
Her store is open between 8 am (hour 8) and 5 pm (hour 17) on Monday (day M), Wednesday (day W), and Friday (day F).
Implement the logic to determine if the store is open based on the current hour and the current day.
NOTE: This problem uses a char to represent the current day of the week. You can use the following key:
Sunday ='U'
Monday ='M'
Tuesday ='T'
Wednesday ='W'
Thursday ='H'
Friday ='F'
Saturday ='S'
The char for the current day is always uppercase. If an invalid char is used, return false.
Examples:
isStoreOpen(8,'M') true
isStoreOpen(12,'W') true
isStoreOpen(12,'S') false
public boolean isStoreOpen(int currentHour, char currentDay){
return false;
}
/*
Shelia's Seashell Store is open between 8 am (hour 8) and 5 pm (hour 17) on Monday (day M), Wednesday (day W), and Friday (day F).
In the summer, the store is open for additional hours. On Wednesday (day W) the store stays open until 8 pm (hour 20) and is also
open Saturday (day S) from 9 am (hour 9) to 3 pm (hour 15).
Implement the logic to determine if the store is open based on the current hour, the current day, and if it's summer.
Examples:
isStoreOpen(8,'M', true) true
isStoreOpen(12,'W', false) true
isStoreOpen(12,'S', false) false
isStoreOpen(9,'S', true) true
public boolean isStoreOpen(int currentHour, char currentDay, boolean isSummer){
return false;
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Theory Icdt 97 6th International Conference Delphi Greece January 8 10 1997 Proceedings Lncs 1186

Authors: Foto N. Afrati ,Phokion G. Kolaitis

1st Edition

3540622225, 978-3540622222

More Books

Students also viewed these Databases questions