|
@@ -1,12 +1,17 @@
|
1
|
|
-------------------------------------------------------------------------
|
2
|
|
-This is the project README file. Here, you should describe your project.
|
3
|
|
-Tell the reader (someone who does not know anything about this project)
|
4
|
|
-all he/she needs to know. The comments should usually include at least:
|
5
|
|
-------------------------------------------------------------------------
|
6
|
|
-
|
7
|
|
-PROJECT TITLE:
|
8
|
|
-PURPOSE OF PROJECT:
|
9
|
|
-VERSION or DATE:
|
10
|
|
-HOW TO START THIS PROJECT:
|
11
|
|
-AUTHORS:
|
12
|
|
-USER INSTRUCTIONS:
|
|
1
|
+The objective of this lab is to give you an opportunity to think through IF statements
|
|
2
|
+and LOOPS (WHILE, DO WHILE, and FOR).
|
|
3
|
+
|
|
4
|
+You will need to read the TEST classes first, to get a feel for what you have to write
|
|
5
|
+for the CODE classes.
|
|
6
|
+
|
|
7
|
+Work through code class WriteIFs.java, follow the directions for each method.
|
|
8
|
+Run All Tests on the class until you pass them all.
|
|
9
|
+
|
|
10
|
+Work through code class WriteLoops.java, follow the directions for each method.
|
|
11
|
+Run All Tests on the class until you pass them all. For each of the loop methods,
|
|
12
|
+you need to put the code about w = w + 1; inside of the loops. It lets the test know how
|
|
13
|
+many iterations of the loop your code did. This data is used to make sure you passed the tests.
|
|
14
|
+
|
|
15
|
+You may not change ANY existing test methods.
|
|
16
|
+
|
|
17
|
+Pass all the tests with your code.
|