This commit is contained in:
2024-09-09 16:08:48 -04:00
parent e8528bbdf3
commit d3f8d942c4
16 changed files with 214 additions and 2 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ public class ReverseNestedLoop {
for (int i = 1; i <= 4; i++) {
System.out.println("");
for (int j = 1; j <= i; j++) {
System.out.print(r);
System.out.print(j);
System.out.print("\t");
r++;
// r++;
}
}
}