Question: According to the given code segment below, assume that user inputs are like x = 1 0 , y = 1 4 , z =

According to the given code segment below, assume that user inputs are like x=10, y=14, z=12. What is the output of this code segment?
public static void main(Stringl] args){
Scanner input = new Scanner(System. in);
System.out.println("Enter a number: ");
int x = input.nextInt ();
System.out-println("Enter a number: ");
int y = input. nextInt ();
System.out.println("Enter a number: ");
int z = input. nextInt();
if (x > y l| z= y)
System.out.println("Nice!");
else if (x > y ll z< y)
System.out-println("Good!");
else if (x > y ll z > y)
System.out.println("Fine!");
else if (xey ll y< z)
System.out.println("well!");

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 Programming Questions!