Question: Modify the given if statement so that Medium - sized university is output if inputSize is in the range 9 0 0 0 - 2

Modify the given if statement so that "Medium-sized university" is output if inputSize is in the range 9000-21500 inclusive. Otherwise, "Not a medium-sized university" is output. import java.util.Scanner;
public class UniversityStudents {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int inputSize;
inputSize = scnr.nextInt();
// Modify the following line
if ((inputSize <9000) && (inputSize >21500)){
System.out.println("Medium-sized university");
}
else {
System.out.println("Not a medium-sized university");
}
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!