java more or less than operator code example
Example 1: summary of operators java
== Equal to
!= Not equal to
> Greater than
>= Greater than or equal to
< Less than
<= Less than or equal to
Example 2: summary of operators java
&& Conditional-AND
|| Conditional-OR
?: Ternary (shorthand for
if-then-else statement)