Skip to content

Instantly share code, notes, and snippets.

@imduffy15
Created February 13, 2013 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imduffy15/4780287 to your computer and use it in GitHub Desktop.
Save imduffy15/4780287 to your computer and use it in GitHub Desktop.
for(int rows=1; rows<(width+width); rows++) {
int numSpaces=Math.abs(width-rows);
if(numSpaces!=0) System.out.printf("%"+numSpaces+"s","");
for(int stars=0;stars<width-numSpaces;stars++) System.out.print("* ");
System.out.println();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment