Question: Create a conditional expression that evaluates to string negative if userVal is less than 0 , and non - negative otherwise. Ex: If userval is
Create a conditional expression that evaluates to string "negative" if userVal is less than and "nonnegative" otherwise. Ex: If userval is output is:
is negative.
Learn how our autograder works
import java.util.scanner;
public class NegativeorPositive
public static void main string args
Scanner scnr new Scanner
System.in;
string condstr;
int userval;
userval scnr nextInt ;
condstr your solution goes here ;
system.out.printlnuserval is condstr ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
