previous
|
start
|
next
Boolean Operators
&&
and
||
or
!
not
if (0 < amount && amount < 1000) ...
if (input.equals("S") || input.equals("M")) ...
previous
|
start
|
next