본문 바로가기
학과 공부/컴퓨터프로그래밍2(자바)

3/14

by sonysame 2018. 3. 14.

variable and data type


variable: contains value

every value has data type(integer, float, character, string...)


data type defines operator


public static void main(String [] args){

int x=(int)3.14;

System.out.println(x);

}


float과 double의 차이

size

double: bigger size, more precise & handle bigger data value


boolean->true false


'학과 공부 > 컴퓨터프로그래밍2(자바)' 카테고리의 다른 글

3/28  (0) 2018.03.28
3/26  (0) 2018.03.26
3/21  (0) 2018.03.21
3/19  (0) 2018.03.19
3/12  (0) 2018.03.12