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 (avoid unnecessary comparisons)
  if (extremeTemp)
    System.out.println ("Visit our shops!");
  else if (temp >= 80)
    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!");