/********************************************* * Author: Eric Heim * Date Created: 5/31/2011 * Course: CS0007 * Description: Shows the basic functionality * of the if-else statement *********************************************/ public class IfElseStatement { public static void main(String[] args) { boolean bool = true; if(bool) System.out.println("bool is true"); else System.out.println("bool is false"); } }