|
@@ -0,0 +1,35 @@
|
|
1
|
+# ZCW-MicroLabs-JavaFundamentals-AliceAndBob
|
|
2
|
+
|
|
3
|
+## `Fork` this Repository
|
|
4
|
+* You should work on this project in your own repository.
|
|
5
|
+* Click the `fork` button in the top right corner to create a copy of this repository on your github account.
|
|
6
|
+* You can go through the [GitHub forking tutorial](https://help.github.com/articles/fork-a-repo/) if you need additional practice with this.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+## Alice and Bob Greeting
|
|
10
|
+
|
|
11
|
+### Topics
|
|
12
|
+* object instantation/declaration
|
|
13
|
+* method invokation
|
|
14
|
+* operators
|
|
15
|
+* user input
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+### Overview
|
|
20
|
+* Write a program which prompts the user to input his/her name.
|
|
21
|
+* The program should greet users whose names are 'Alice' and 'Bob'.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+### Unit Test
|
|
25
|
+* No Unit Test
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+### Instructions
|
|
29
|
+1. Understand how to get input from user
|
|
30
|
+2. Create conditional to check against Alice and Bob
|
|
31
|
+3. Print greeting to screen if Alice or Bob are true
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+## What's next?
|
|
35
|
+* The next lab can be founds [here](https://github.com/Zipcoder/ZCW-MicroLabs-JavaFundamentals-SumOfInput).
|