Question: Declare a Boolean variable named allValid. Then, read integer numInput from input representing the number of integers to be read next. Use a loop to
Declare a Boolean variable named allValid. Then, read integer numInput from input representing the number of integers to be read next. Use a loop to read the remaining integers from input. If any of the numInput integers are in the range to inclusive, assign allValid with false. Otherwise, assign allValid with true.
Code at the end of main outputs "Only valid values if allValid is true or "Invalid values if allValid is false.
Ex: If the input is:
then the output is:
Invalid values
import java.util.Scanner;
public class IntegerData
public static void mainString args
Scanner scnr new ScannerSystemin;
int numInput;
Additional variable declarations go here
Your code goes here
if allValid
System.out.printlnOnly valid values;
else
System.out.printlnInvalid values;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
