Skip to content

Commit

Permalink
complete objective7lab2
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Shumway42 committed Sep 29, 2021
1 parent 8fa9f84 commit c569384
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Labs/Objective7Lab2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
public class Objective7Lab2 {
public static void main(String[] args) {
int counter = 0;

while(counter <= 20) {

System.out.println(counter);
counter = counter + 1;

}
}
}

0 comments on commit c569384

Please sign in to comment.