calvinramjr calvinramjr 08-05-2020 Computers and Technology contestada 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.