Notice
Recent Posts
Recent Comments
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Chimy's Program

온라인 편집기 본문

기타

온라인 편집기

chimy 2020. 5. 3. 18:48

온라인 실습 환경 장만하기

 

무거운 프로그래밍 언어 에디터가 설치되지 않은 환경에서

급하게 코드를 작성하거나 간단한 알고리즘을 구현해보는데 유용한 웹에디터들 이용하기

keyword : java online editor

 

 

https://www.jdoodle.com/

 

JDoodle - free Online Compiler, Editor for Java, C/C++, etc

JDoodle is a free Online Compiler, Editor, IDE for Java, C, C++, PHP, Perl, Python, Ruby and many more. you can run your programs on the fly online and you can save and share them with others. Quick and Easy way to compile and run programs online.

www.jdoodle.com

자신이 시연하고 싶은 언어 클릭

 

 

언어를 클릭하게 되면 기본적으로 중앙에 코드를 작성할 수 있는 블록 안에 샘플코드가 들어있다

 

 

Hello World를 출력하는 프로그램을 작성 하고 Execute(실행)해보면

하단의 검은 블록에 결과가 출력된다

 

 

그 외 입력값을 받아오고 싶다면

CommandLine Arguments에 입력할 값을 적고

args배열로 받아온다

 

 

여러 개의 입력 값을 받고 싶다면 띄어쓰기로 구분하면 되고

배열인덱스를 하나씩 늘려가며 받아오면 된다

Comments