Grasshopper Technologies
7228 W. Hood Ave.
Chicago, IL 60631
t: 847 722-4455
info@grasshoppertech.com

Valid XHTML 1.0 Strict

Java Fun! - Chapter 1 - Face

public class JavaFun01dFace {
    // Notice the extra forward slash that is needed
    public static void main(String[] args) {
        System.out.println("            *");
        System.out.println("         *     *");
        System.out.println("      *   0   0   *");
        System.out.println("      *     +     *");
        System.out.println("         * \\-/   *");
        System.out.println("            *");
    }    
    
}

run:
            *
         *     *
      *   0   0   *
      *     +     *
         * \-/   *
            *
BUILD SUCCESSFUL (total time: 0 seconds)