what is the ? operator in java code example
Example 1: Operators in java
public class AssignmentOperatorDemo
{
public static void main(String[] args)
{
int numOne = 60;
int numTwo = 30;
numTwo += numOne;
System.out.println("(+=) : " + numTwo);
numTwo -= numOne;
System.out.println("(-=) : " + numTwo);
numTwo *= numOne;
System.out.println("(*=) : " + numTwo);
numTwo /= numOne;
System.out.println("(/=) : " + numTwo);
numTwo %= numOne;
System.out.println("(%=) : " + numTwo);
}
}
Example 2: Operators in java
public class ArithmeticOperatorDemo
{
public static void main(String[] args)
{
int i = 25;
int j = 5;
System.out.println(i + j);
System.out.println(i - j);
System.out.println(i * j);
System.out.println(i / j);
System.out.println(i % j);
}
}
Example 3: Operators in java
public class JavaUnaryOperator
{
public static void main(String[] args)
{
int a = 23;
System.out.println("Java post-increment = " + a++);
System.out.println("Java pre-increment = " + ++a);
}
}
Example 4: Operators in java
public class TernaryOperatorDemo
{
public static void main(String[] args)
{
int a = 50, b = 500, bigger;
System.out.println("First number: " + a);
System.out.println("Second number: " + b);
bigger = (a > b) ? a : b;
System.out.println("Bigger number is = " + bigger);
}
}