[자바] hello world 출력해보기
·
프로그래밍/Java
아주 기초이지만 기본적인 내용 hello world 출력. c언어도 c++도 hello world 출력에서부터 시작된다. public class Hello { public static void main(String[] args) { System.out.println("Hello, World!"); //화면에 글자를 출력. } }