Froilan Miranda před 6 roky
revize
8f75afc06b
3 změnil soubory, kde provedl 29 přidání a 0 odebrání
  1. binární
      .DS_Store
  2. 9
    0
      Main.java
  3. 20
    0
      README.md

binární
.DS_Store Zobrazit soubor


+ 9
- 0
Main.java Zobrazit soubor

@@ -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 Zobrazit soubor

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