Pages

display the stars the following * ** *** **

/* display the stars the following
                *
             *    *
          *    *    *
       *    *     *   *
          *    *     *     *    *
*/
class StarsTest
     public static void main(String args[])
     {
                         int stars=1,lines=5,spaces=5;
                         int i=1,j,k;
                         for(i=0;i<lines;i++)
              {
                        // print spaces first
                                    for(k=0;k<spaces;k++)
                                  System.out.print(" ");
                          for(j=0;j<(stars);j++)                                 
                                            System.out.print("* ");                                  
              spaces  ;  
              stars +=1;
              System.out.println( );         
        }         
    }
}
D:\prr\Core java>javac StarsTest.java
D:\prr\Core java>java StarsTest
              *
              *    *
           *    *    *
        *    *     *   *

           *    *     *     *    *