This commit is contained in:
2025-10-19 21:30:56 -05:00
parent 74a49d8478
commit a52b14101b
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) {