int num; //변수 선언
num = 256; //값 할당
해당 타입 만큼 공간을 잡아
라는 프로그래머의 명령 (= 메모리 할당)int num
: 변수 타입 + 변수이름num
이라는 방 이름으로 int (4byte)
공간을 확보하라2의 보수 : 1의 보수에 1을 더함
컴퓨터에서 음의 정수를 처리하는 원리
부동소수점 표현 : 부호, 지수, 가수
±(1.가수부)×2지수부-127
참고:http://www.tcpschool.com/java/java_datatype_floatingPointNumber
char ch1 = '헐'; //"" 더블따옴표 안됨!
char ch2 = '확';
System.out.println(ch1 + ch2);
System.out.println(ch1 + " " + ch2);
//Result
109605
헐 확
short num1 = 11;
short num2 = 22;
short result = num1 + num2;
System.out.println(result);
//안 된다.