package day01;
public class Test03 {
public static void main(String[] args) {
char ch = '\u0041';
System.out.println(ch);
byte bb = (byte)130;
System.out.println(bb);
int i = 15;
int j = 015;
int k = 0x15;
int l = 0b0101;
System.out.println(i);
System.out.println(j);
System.out.println(k);
System.out.println(l);
String str = "안녕하세요";
System.out.println(str);
str = "으이구";
System.out.println(str);
str = "A";
System.out.println(str);
float f = 3.14F;
double d = f;
long ll = 100L;
int iii = (int)ll;
System.out.println(f);
System.out.println(d);
System.out.println(ll);
System.out.println(iii);
}
}