Tuesday, November 20, 2012

Star Printing 3


public class Stars
{
    public static void main(String[] args)
    {
        int c= 0;

        for (int w= 0; w<= 20; w++)
        {
            for (int L= w;L <= 40;L++)
            {
                System.out.print(" ");
            }

            for (int s= 0; s<c; s++)
            {
                if (s%2== 0)
                {
                System.out.print(" ");
                }
                else
                {
                System.out.print("*");
                }
            }
            System.out.println();
            c+= 2;
        }
    }
}

No comments: