Programming Examples
Java program to checks whether the number is positive negative or zero using the ternary operator
Write a Java program that takes an integer as input and checks whether the number is positive, negative, or zero using the ternary operator.
Solution
import java.util.Scanner;
public class NumberSignCheck
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter a number: ");
int number = sc.nextInt();
String result = (number > 0) ? "Positive" :
(number < 0) ? "Negative" : "Zero";
System.out.println("The number is: " + result);
}
}
Output