Question: Define the method inspectValues() with a Scanner parameter that reads integers from input until -1 is read. The method returns true if none of the
Define the method inspectValues() with a Scanner parameter that reads integers from input until -1 is read. The method returns true if none of the integers read before -1 are between 100 and 200 inclusive. Otherwise, the method returns false. Ex: If the input is 2 150 210 -1, then the output is: Invalid value(s)
import java.util.Scanner;
public class ValueInspector {
/* Your code goes here */
public static void main(String[] args) { Scanner scnr = new Scanner(System.in); boolean allValid; allValid = inspectValues(scnr); if (allValid) { System.out.println("All valid values"); } else { System.out.println("Invalid value(s)"); } } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
