View Single Post
  #2 (permalink)  
Old 07-30-2007, 11:21 AM
Swamipsn Swamipsn is offline
Member
 
Join Date: Jul 2007
Posts: 72
Swamipsn is on a distinguished road
public class ex1
{
public static void main(String args[])
{
int i,j;
for(i=1;i<=6;i++)
{
for(j=1;j<=i;j++)
{
System.out.print(" *");
}
System.out.println("");
}

}}

I think it would give the result eaxctly wanted by you
Reply With Quote