Skip to content

Commit c692983

Browse files
Update flow statements
1 parent 5f3e0a9 commit c692983

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

flow statements

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,13 @@ public class Main
4141
continue;
4242
}
4343
}
44+
// nested loop
45+
for(int i=1;i<=n;i++){
46+
for(int j=1;j<=n;j++){
47+
System.out.print("*");
48+
}
49+
System.out.println();
50+
}
51+
4452
}
4553
}

0 commit comments

Comments
 (0)