187k views
3 votes
Consider the following code segment:

if (value > 0)

System.out.println("positive");

if (value < 0)

System.out.println("negative");

if (value == 0)

System.out.println("neither");


Rewrite the code in the space below so that it uses an if-else structure instead of 3 if statements.

IM struggling does anyone know how to do this

1 Answer

3 votes

Answer:

Step-by-step explanation:

if (value > 0)

System.out.println("positive");

else

if (value < 0)

System.out.println("negative");

else

System.out.println("neither");

User Roman C
by
3.7k points