-
-
Save joonlim92/b30eda6a453602057852 to your computer and use it in GitHub Desktop.
[1일차] Hello World 예제
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fast Campus 안드로이드 앱 개발 입문 | |
* Java for Android (by mindwing) | |
* [1일차] 강의노트 - 변수, 연산자, 선택문, 반복문 | |
* 필수 예제1 | |
*/ | |
public class D1_HelloWorld { | |
public static void main(String[] args) { | |
System.out.println("안녕 세상"); | |
System.out.print("제 이름은 임준세 입니다"); | |
} | |
} |
안녕 세상
제 이름은 임준세 입니다
로 수정하였습니다
잘 하셨습니다.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
안녕 세상 이라고 바꿨습니다