1. Boolean 데이터 타입 Boolean은 참(True)과 거짓(False)을 다루는 데이터 타입이다 해당 데이터 타입 안에는 true와 false 딱 두가지 데이터만이 존재한다 예제) public class BooleanApp { public static void main(String[] args) { System.out.println("One"); System.out.println(1); System.out.println(true); System.out.println(false); String foo = "Hello World"; //String true = "Hello World"; true는 예약어(Reserved Word)이기 때문에 변수로 사용불가능 // 예약어(Reserved Word)..