瀏覽代碼

Ray is finished. Hopefully#

rayskeez21 6 年之前
父節點
當前提交
0a96d01e0f
共有 3 個文件被更改,包括 17 次插入2 次删除
  1. 二進制
      Main.class
  2. 5
    0
      Main.ctxt
  3. 12
    2
      Main.java

二進制
Main.class 查看文件


+ 5
- 0
Main.ctxt 查看文件

@@ -0,0 +1,5 @@
1
+#BlueJ class context
2
+comment0.target=Main
3
+comment1.params=args
4
+comment1.target=void\ main(java.lang.String[])
5
+numComments=2

+ 12
- 2
Main.java 查看文件

@@ -1,9 +1,19 @@
1 1
 /**
2 2
  * Created by iyasuwatts on 10/17/17.
3 3
  */
4
+import java.util.Scanner;
4 5
 public class Main {
5
-
6
+    
6 7
     public static void main(String[] args ){
7
-
8
+    Scanner in = new Scanner(System.in);
9
+    
10
+    System.out.print("What is your name? ");
11
+    String name = in.nextLine();
12
+    
13
+    if(name.equals("Alice")){
14
+        System.out.print("Hello Alice!");
15
+    } else if(name.equals("Bob")){
16
+        System.out.print("Hello Bob");
17
+    }
8 18
     }
9 19
 }