|
@@ -0,0 +1,20 @@
|
|
1
|
+# ZCW-MicroLabs-JavaFundamentals-TooLargeTooSmall
|
|
2
|
+
|
|
3
|
+# Guessing Game; Too Large Too Small
|
|
4
|
+
|
|
5
|
+### Topics
|
|
6
|
+* user input
|
|
7
|
+* `Random` object
|
|
8
|
+
|
|
9
|
+## Overview
|
|
10
|
+* Write a guessing game which prompts a user to guess a mystery number within some range.
|
|
11
|
+* After every guess the program should display some variation of "too large", "too small", "correct guess", respectively.
|
|
12
|
+* Upon termination, the program should display the number of guesses before successfully guessing correctly.
|
|
13
|
+* A number that is input consecutively, should register as a single guess.
|
|
14
|
+
|
|
15
|
+## Unit Test
|
|
16
|
+No Unit Test
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+## What's Next?
|
|
20
|
+* The next lab can be found [here](https://github.com/Zipcoder/ZCW-MicroLabs-JavaFundamentals-SumOrProduct)
|