Lab0

Lab0 (Due by 3/13)
HelloWorld 프로그램을 작성한다.

JDK 설치 http://dis.dankook.ac.kr/lectures/java18/2018/03/02/jdk/

IDE 설치 http://dis.dankook.ac.kr/lectures/java18/2018/03/02/eclipse/

환경설정

이클립스를 사용한 자바 프로그램 작성

프로젝트 디렉토리(Lab0) 안에 보고서 (1~2장정도 – 장수 제한 없음)를 넣고 Lab0_학번_이름.zip 압축한 후 e-learning(http://lms.dankook.ac.kr/index.jsp)으로 제출

보고서는 프린트해서 수업시간전에 제출

배울 만한 10가지 프로그래밍 언어

http://www.itworld.co.kr/insight/103581

1. 자바(Java)

2. 자바스크립트(JavaScript)

3. 파이썬(Python)

4. C++

5. 루비(Ruby)

6. C

7. 스위프트(Swift)

8. C#

9. 어셈블리(Assembly)

10. PHP

 

https://www.tiobe.com/tiobe-index/

1. 자바(Java)

2. C

3. C++

4. C#

5. 파이썬(Python)

6. 자바스크립트(JavaScript)

7. PHP

8. Visual Basic .NET

9. 어셈블리(Assembly)

10. 루비(Ruby)

11. Delphi/Object Pascal

12. Perl

13. MATLAB

14. Scratch

15. R

16. 스위프트(Swift)

17. Objective-C

18. Visual Basic

19. PL/SQL

20. Go

JDK

1. Java SE 9.0.4 Download
http://www.oracle.com/technetwork/java/javase/downloads/index.html

2. Path 지정하기

To set the PATH variable on Microsoft Windows:

  • Select Control Panel and then System.
  • Click Advanced and then Environment Variables.
  • Add the location of the bin folder of the JDK installation to the PATH variable in System Variables.

3. Java 실행

~>java -version

 

4. Notepad 사용하여 Java 코드 작성하기

~>notepad Hello.java

 

5. 컴파일 javac Hello.java

~>javac Hello.java

 

6. 실행 java Hello

~>java Hello

 

Java Online Resources

Oracle Java Tutorial
http://docs.oracle.com/javase/tutorial/tutorialLearningPaths.html

Dotnetperls Java Tutorial
http://www.dotnetperls.com/java

Java2s Java Tutorial
http://www.java2s.com/Tutorial/Java/CatalogJava.htm

생활코딩 동영상 Java Tutorial
https://opentutorials.org/module/516/4551

Tutorialspoint Java Tutorial
https://www.tutorialspoint.com/java/

JavaTPoint Java Tutorial
https://www.javatpoint.com/java-tutorial

Java Tutorial: Learn Java Programming with examples
https://beginnersbook.com/java-tutorial-for-beginners-with-examples/