Question: Feedback? CHALLENGE ACTIVITY 3 . 5 . 1 : Detecting ranges using logical operators. 5 2 8 0 4 0 . 3 4 8 9

Feedback?
CHALLENGE
ACTIVITY
3.5.1: Detecting ranges using logical operators.
528040.3489528.qx3zqy7
Modify the given if statement so that "Not a mid-size university" is output if students Input is outside the range 9500-19000 inclusive. Otherwise, "Mid-size university" is output.
Click here for examples
public class UniversityPopulation {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
int studentsInput;
studentsInput = scnr.nextInt () ;
// Modify the following line
if ((studentsInput 9500) && (studentsInput >19000)){
System.out.println("Not a mid-size university");
}
else {
System.out.println("Mid-size university");
}
}
}
 Feedback? CHALLENGE ACTIVITY 3.5.1: Detecting ranges using logical operators. 528040.3489528.qx3zqy7 Modify

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!