Question: 2 1 0 : Introduction to Java Technologies home > 3 . 4 : Detecting ranges with branches 5 2 8 0 4 0 .

210: Introduction to Java Technologies home >3.4 : Detecting ranges with branches
528040.3489528.9329y7
Jump to level 1
Write an if-else statement to output "Greater than or equal to 90" if the value of inputVal is greater than or equal to 90. Otherwise, output "Less than 90". End with a newline.
Ex: If the input is 91, then the output is:
Greater than or equal to 90
import java.util.Scanner;
public class Relational {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
int inputVal;
inputVal = scnr. nextInt ();
V* Your code goes here */
}
}
1
2
3
4
 210: Introduction to Java Technologies home >3.4 : Detecting ranges with

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!