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