瀏覽代碼

Jons Alice and Bob

Jonathan Hinds 6 年之前
父節點
當前提交
68d48c0e27
共有 3 個文件被更改,包括 21 次插入1 次删除
  1. 二進制
      Main.class
  2. 7
    0
      Main.ctxt
  3. 14
    1
      Main.java

二進制
Main.class 查看文件


+ 7
- 0
Main.ctxt 查看文件

@@ -0,0 +1,7 @@
1
+#BlueJ class context
2
+comment0.target=Main
3
+comment1.params=
4
+comment1.target=void\ main()
5
+comment2.params=
6
+comment2.target=void\ Welcome()
7
+numComments=3

+ 14
- 1
Main.java 查看文件

@@ -1,9 +1,22 @@
1 1
 /**
2 2
  * Created by iyasuwatts on 10/17/17.
3 3
  */
4
+import java.util.Scanner;
5
+
4 6
 public class Main {
5 7
 
6
-    public static void main(String[] args ){
8
+    public static void main(){
9
+
10
+    }
11
+    
12
+    public static void Welcome(){
13
+        Scanner scanner = new Scanner(System.in);
14
+        String userInput = scanner.next();
7 15
 
16
+        //System.out.println(userInput);
17
+        if(userInput.equalsIgnoreCase("alice") || userInput.equalsIgnoreCase("bob"))
18
+        {
19
+            System.out.println("Welcome");
20
+        }
8 21
     }
9 22
 }