소스 검색

finished commit

John Kim 6 년 전
부모
커밋
aa1f361749
3개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. BIN
      Main.class
  2. 5
    0
      Main.ctxt
  3. 7
    0
      Main.java

BIN
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

+ 7
- 0
Main.java 파일 보기

@@ -1,9 +1,16 @@
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 ){
8
+        Scanner scanner = new Scanner(System.in);
9
+        System.out.println("What is your name?");
10
+        String name = scanner.nextLine();
11
+        if (name.equals("Alice") || name.equals("Bob")) {
12
+            System.out.println("Hello " + name + "!");
13
+        }
7 14
 
8 15
     }
9 16
 }