Procházet zdrojové kódy

Added program to greet Alice and Bob

Trinh Tong před 6 roky
rodič
revize
39f4fdfe73
4 změnil soubory, kde provedl 34 přidání a 7 odebrání
  1. binární
      Main.class
  2. 5
    0
      Main.ctxt
  3. 25
    3
      Main.java
  4. 4
    4
      package.bluej

binární
Main.class Zobrazit soubor


+ 5
- 0
Main.ctxt Zobrazit soubor

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

+ 25
- 3
Main.java Zobrazit soubor

1
 /**
1
 /**
2
- * Created by iyasuwatts on 10/17/17.
2
+ * Trinh Tong
3
+ * Lab - Alice and Bob
4
+ * Using the scanner to take an input and then display the message 
5
+ * with the user's keyboard input.
3
  */
6
  */
7
+import java.util.*; 
8
+
4
 public class Main {
9
 public class Main {
5
 
10
 
6
     public static void main(String[] args ){
11
     public static void main(String[] args ){
7
-
8
-    }
12
+        
13
+        Scanner keyboard = new Scanner(System.in);
14
+        
15
+        System.out.println("Please enter your name.");
16
+        
17
+        String name = keyboard.nextLine();
18
+        
19
+        String returnLine = "Hello, " + name + ".";
20
+        
21
+        if (name.equalsIgnoreCase("Alice")) {
22
+            System.out.println(returnLine); 
23
+        } else if (name.equalsIgnoreCase("Bob")) {
24
+            System.out.println(returnLine); 
25
+        } else {
26
+            System.out.println("You aren't Alice or Bob!"); 
27
+        }
28
+    }  
29
+        
9
 }
30
 }
31
+

+ 4
- 4
package.bluej Zobrazit soubor

1
 #BlueJ package file
1
 #BlueJ package file
2
-editor.fx.0.height=0
3
-editor.fx.0.width=0
4
-editor.fx.0.x=0
5
-editor.fx.0.y=0
2
+editor.fx.0.height=722
3
+editor.fx.0.width=800
4
+editor.fx.0.x=512
5
+editor.fx.0.y=164
6
 objectbench.height=101
6
 objectbench.height=101
7
 objectbench.width=776
7
 objectbench.width=776
8
 package.divider.horizontal=0.6
8
 package.divider.horizontal=0.6