Question
Find the output import java.util.*; public class DebugFive4 { public static void main (String args[]) { Scanner input = new Scanner(System.in); int one, two,
Find the output
import java.util.*;
public class DebugFive4
{
public static void main (String args[])
{
Scanner input = new Scanner(System.in);
int one, two, three, four;
String str, output;
System.out.println("Enter an integer");
str = input.next();
one = Integer.parseInt(str);
System.out.println("Enter an integer");
str = input.next();
two = Integer.parseInt(str);
System.out.println("Enter an integer");
str = input.next();
three = Integer.parseInt(str);
System.out.println("Enter an integer");
str = input.next();
four = Integer.parseInt(str);
if(one > two && one > three && one > four){
output = "Highest is " + four;
}
else
if(two > one && two > three && two > four){
output = "Highest is " + three;
}
else
if(three > one && three > two && three > four)
{
output = "Highest is " + three;
}
else
{
output = "Highest is " + four;
}
System.out.println(output);
input.close();
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Answer Lets go through the code and determine the output The ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started