Jonathan Hinds преди 6 години
родител
ревизия
68d48c0e27
променени са 3 файла, в които са добавени 21 реда и са изтрити 1 реда
  1. BIN
      Main.class
  2. 7
    0
      Main.ctxt
  3. 14
    1
      Main.java

BIN
Main.class Целия файл


+ 7
- 0
Main.ctxt Целия файл

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
 /**
1
 /**
2
  * Created by iyasuwatts on 10/17/17.
2
  * Created by iyasuwatts on 10/17/17.
3
  */
3
  */
4
+import java.util.Scanner;
5
+
4
 public class Main {
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
 }