As activity directory at Lake Lazydays Resort, it is your job to
suggest appropriate activities to guests based on the weather.
You recommend that when the temperature is greater than 95 or less than
20 people should visit the resort shops. Otherwise you recommend the
following activities:
temp >= 80: swimming
60 <= temp < 80: tennis
40 <= temp < 60: golf
20 <= temp < 40: skiing
Fill in the blanks in the code below as directed in the comments. The
if should be a cascading if with
conditions that are no more complicated than necessary.
int temp;
System.out.println("What's the temperature today?");
temp = scan.nextInt();
// Declare a boolean variable extremeTemp and assign it an
// expression that is true when the temperature is greater than 95 or
// less than 20
__________________________________________________________________________;
// Complete the cascading if (points will be deducted for unnecessary
// comparisons - use the boolean variable declared above where appropriate)
if ( __________________________________________ )
System.out.println ("Visit our shops!");
else if ( _______________________________________________ )
System.out.println("How about a dip in the pool?");
_______________________________________________________
System.out.println("Go grab a racquet!");
_______________________________________________________
System.out.println("It's a perfect day for golf.");
_______________________________________________________
System.out.println("Let's hit the slopes!");