This commit is contained in:
2022-10-13 14:47:40 -05:00
parent eeead47ab0
commit 9b131d5f88
14 changed files with 2111 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ public class NestedForPyramid {
for (int row = 1; row <= 128; row += row) {
// Whitespace Moment
for (int startSpace = 0; startSpace < endSpace; startSpace++) {
System.out.print(" ");
System.out.print(" ");
}
// Display ascending numbers
for (int l = 1; l <= row; l += l) {