temp >= 80: swimming 60 <= temp < 80: tennis 40 <= temp < 60: golf 20 <= temp < 40: skiingFill 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!");
!(age >= 65 && income < 20000)
while ( boolean condition ) { ... sequence of statements to be repeated ... (This is called the body of the loop. It is executed when the boolean condition is true.) }In Lab 6 you used an if statement to check that a test grade entered was valid (in the range 0 - 100). A while loop could have been used to keep asking the user to enter a score until one in the correct range was entered. The loop would be as follows:
System.out.print("Enter " + name + "'s test score: "); test1 = scan.nextInt(); while ( _____________________________________________________ ) { System.out.println (test1 + " is not a valid score."); System.out.print ("Enter a valid score in the range 0 - 100: "); test1 = scan.nextInt(); }The body of the loop should execute when the value of test1 is not valid. Hence, the blank should be the boolean expression for test1 NOT in the range 0 - 100. Fill in the blank with the correct expression in valid Java syntax.