Skip to content

Commit

Permalink
feat(4.3.2): Finish U4_L3_Activity_Two
Browse files Browse the repository at this point in the history
  • Loading branch information
101zh committed Oct 27, 2023
1 parent 8080f0f commit d24dbca
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/Unit4/U4_L3_Activity_Two.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package Unit4;

public class U4_L3_Activity_Two {
public static void main(String[] args) {
for (int i=17; i<=73; i++){
System.out.print(i+" ");
if((i-6)%10==0){
System.out.println();
}
}
}
}

0 comments on commit d24dbca

Please sign in to comment.