Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions