Building a Boolean from a Number
if (x) System.out.println(ěCongratulations, itís a Boole!î);
Convert an integer x (following the C language convention that any nonzero value is true):
if (x != 0) System.out.println(ěCongratulations, itís a Boole!î);