瀏覽代碼

initial commit

Froilan Miranda 6 年之前
當前提交
8f75afc06b
共有 3 個文件被更改,包括 29 次插入0 次删除
  1. 二進制
      .DS_Store
  2. 9
    0
      Main.java
  3. 20
    0
      README.md

二進制
.DS_Store 查看文件


+ 9
- 0
Main.java 查看文件

@@ -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 查看文件

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