All pastes #745729 Raw Edit

Exercise 4.29

public java v1 · immutable
#745729 ·published 2007-10-22 17:14 UTC
rendered paste body
public class Star{	public boolean space=false;	public void MakeStar()	{		for (int y=0;y<8;y++)		{		if (space==true)		{			System.out.print(" ");			space=false;		}		else		{			space=true;		}		for (int i=0;i<8;i++)		{			System.out.print("* ");		}		System.out.println("");		}	}		public static void main(String argv[])	{		Star star = new Star();		star.MakeStar();	}}