https://docs.oracle.com/javase/8/docs/api/
public class Test2 {

public static void main(String[] args)
{
// TODO Auto-generated method stub
System.out.println();
int count; // 변수 선언

// count = 100;
// System.out.println(count);
//
// count = 200;
// System.out.println(count);

char c;
c = '가';//문자표 = 자바는 유니코드를 사용
System.out.println(c);

// 주석처리방법
// 컨트롤 +/
// 자바에서 사용하는 데이터 형
// 기본형
// 1. 정수형 int(32), long(64), short(16), byte(8) 1byte = 8bit 10
// 2. 실수형 double(64), float(32) 10.0
//처음은 부호비트(1) / 지수(11) / 가수(52)
// 3. 문자형 char 'a' , '가'
// 4. 논리형 boolean /true, false
// 1byte = 8 bit
// 0000 0000 ~ 1111 1111 (0) ~ (255)
// 0 000 0000 맨 앞자리는 0 이면 +/ 1이면 -를 나타내기때문에
// -128 ~ 127
// int x = 1; 0000 0000 0000 0000 0000 0000 0000 0001
// byte y = 1; 0000 0001
// 기타...
//클래스타입형(참조타입형)
}

}