浏览代码

Created AliceAndBob

Seth 6 年前
父节点
当前提交
070c0e4dbb
共有 4 个文件被更改,包括 35 次插入9 次删除
  1. 二进制
      AliceandBob.class
  2. 8
    0
      AliceandBob.ctxt
  3. 27
    0
      AliceandBob.java
  4. 0
    9
      Main.java

二进制
AliceandBob.class 查看文件


+ 8
- 0
AliceandBob.ctxt 查看文件

@@ -0,0 +1,8 @@
1
+#BlueJ class context
2
+comment0.target=AliceandBob
3
+comment0.text=\n\ Created\ by\ iyasuwatts\ on\ 10/17/17.\n
4
+comment1.params=args
5
+comment1.target=void\ main(java.lang.String[])
6
+comment2.params=
7
+comment2.target=void\ greeting()
8
+numComments=3

+ 27
- 0
AliceandBob.java 查看文件

@@ -0,0 +1,27 @@
1
+import java.util.*;
2
+
3
+/**
4
+ * Created by iyasuwatts on 10/17/17.
5
+ */
6
+public class AliceandBob {
7
+
8
+    public static void main(String[] args ){
9
+
10
+    }
11
+
12
+    public void greeting() {
13
+        Scanner input = new Scanner(System.in);
14
+        System.out.println("What is your name?");
15
+        String name = input.nextLine();
16
+
17
+        if (name.equals("Alice")) {
18
+
19
+            System.out.println("Hi Alice!");
20
+        } else if (name.equals("Bob")) {
21
+            System.out.println("Hi Bob!");
22
+        } else {
23
+            System.out.println("Get Out!");
24
+        }
25
+
26
+    }
27
+}

+ 0
- 9
Main.java 查看文件

@@ -1,9 +0,0 @@
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
-}