//  Scott DeRuiter   8/27/2002
//  MyFamily.java
//  I will print out the members of my family in a simple tree.

public class MyFamily   
{   
	public static void main ( String [] args )   
	{
		System.out.println ( "\n\n\n\tHenry          Linda" );
		System.out.println ( "\t    \\          /");
		System.out.println ( "\t      \\      /");
		System.out.println ( "\t        Scott           Cristina" );		
		System.out.println ( "\t             \\          /");
		System.out.println ( "\t               \\      /");
		System.out.println ( "\t                Nicolas\n\n\n" );
	}
}

Back to Lesson 1 Examples

Back to Java Main Page