Question: Write an if - else statement to output Greater than or equal to 3 0 if the value of inVal is greater than or

Write an if-else statement to output "Greater than or equal to 30" if the value of inVal is greater than or equal to 30. Otherwise, output "Less than 30". End with a newline.
Ex: If the input is 31, then the output is:
Greater than or equal to 30 import java.util.Scanner;
public class Relational {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int inVal;
inVal = scnr.nextInt();
/* Your code goes here */
}
}

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!