Bläddra i källkod

initial commit

Froilan Miranda 6 år sedan
incheckning
8f75afc06b
3 ändrade filer med 29 tillägg och 0 borttagningar
  1. Binär
      .DS_Store
  2. 9
    0
      Main.java
  3. 20
    0
      README.md

Binär
.DS_Store Visa fil


+ 9
- 0
Main.java Visa fil

@@ -0,0 +1,9 @@
1
+/**
2
+ * Created by iyasuwatts on 10/17/17.
3
+ */
4
+public class Main {
5
+
6
+    public static void main(String[] args){
7
+        
8
+    }
9
+}

+ 20
- 0
README.md Visa fil

@@ -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)