Skip to content

Commit 1d2895b

Browse files
committed
code modified
1 parent 44bc620 commit 1d2895b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

02_Pattern Questions/Pattern1.class

428 Bytes
Binary file not shown.

02_Pattern Questions/Pattern1.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
public class Pattern1{
22
public static void main(String[] args) {
3-
System.out.println("Wel to this course");
3+
for (int i = 0; i < 5; i++) {
4+
for (int j = 0; j < 5; j++) {
5+
6+
System.out.print("* ");
7+
}
8+
System.out.println();
9+
}
410
}
511
}

0 commit comments

Comments
 (0)