Skip to content

Commit

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

while(counter > 0) {

System.out.println(counter);

counter = counter - 1; //this makes we count down
}
}
}

0 comments on commit 8fa9f84

Please sign in to comment.