Sunday, February 24, 2013

Sample For Loop 4


public class act6 {

    public static void main(String[] args) {
           
        for(int i=1; i>=6; i--)
        {
            for(int j=1; j>=i; j--)
           
                System.out.print(" * ");
           
            System.out.println();
        }
       
        for(int i=5; i>=1; i--)
        {
            for(int j=5; j>=i; j--)
           
                System.out.print(" * ");
           
            System.out.println();
        }
       
       
    }

}

No comments:

Post a Comment