Skip to content

Instantly share code, notes, and snippets.

@zeqing-guo
Created October 21, 2014 15:56
Show Gist options
  • Save zeqing-guo/75ab0128c4fdbdaa541a to your computer and use it in GitHub Desktop.
Save zeqing-guo/75ab0128c4fdbdaa541a to your computer and use it in GitHub Desktop.
@@ -19,12 +19,14 @@ public static void main(String[] args) {
spacebar += " ";
}
System.out.print(spacebar);
- for (int k = 1; k <= n-j+1; k++) {
+ for (int k = 1; k <= 2 * (n-j)+1; k++) {
star += "*";
}
System.out.print(star);
System.out.println();
+
+ spacebar = "";
+ star = "";
}
- System.exit(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment