Star printing in Java-01


import java.util.*;
public class Star2
{
public static void main(String args[])
{
for(int row=1;row<=6;row++)
{
for(int col=row;col<=6;col++)
{
System.out.print("*");
}
System.out.println();
}
}
}

Comments

Popular posts from this blog

GL_QUAD_STRIP Example In OpenGl

GL_TRIANGLE_FAN Example In OpenGl