/** * Demonstrates the evaluation and use of boolean conditions. * * @author Pete Nordquist * @version 061030 */ public class W06N01 { /** * prints the value of the sample problem given in class */ public static void relationalBooleans() { // System.out.println("true < true is " + (true < true)); System.out.println("(true != false) == true is " + ((true != false) == true)); System.out.println("true != true || false == false is " + (true != true || false == false)); } }