1. 데이터 출력 데이터를 출력하는 가장 기본적인 방법은 콘솔로 출력하는 print() 메서드를 사용하는 것 print() 메서드를 사용하려면 System 클래스를 사용해야 함 System 클래스는 시스템과 관련된 작업을 수행하는 표준 입출력 클래스로, 표준 출력을 위한 변수 out이 정의되어 있어 콘솔로 출력 public class Example02{ public static void main(String[] args){ System.out.println("java" + "Program"); } } public class InputOutput01{ public static void main(String[] args){ String myName = "홍길동"; int myAge = 20; System.o..