Parcourir la source

Jons Alice and Bob

Jonathan Hinds il y a 6 ans
Parent
révision
68d48c0e27
3 fichiers modifiés avec 21 ajouts et 1 suppressions
  1. BIN
      Main.class
  2. 7
    0
      Main.ctxt
  3. 14
    1
      Main.java

BIN
Main.class Voir le fichier


+ 7
- 0
Main.ctxt Voir le fichier

@@ -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 Voir le fichier

@@ -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
 }