public class data_formpro {
    public static void main(String[] args) {
//        // 数字拓展
//        int i = 10;
//        int i1 = 0b10;  //二进制0b
//        int i2 = 010;   //八进制0
//        int i3 = 0x10;  //十六进制0x
//        System.out.println(i);
//        System.out.println(i1);
//        System.out.println(i2);
//        System.out.println(i3);
//        System.out.println("=========================");
//        //float 有限  离散  四舍五入    大约  接近但不等于
//        //最好完全用浮点数比较
//        //最好完全用浮点数比较
//        //最好完全用浮点数比较
//        float f = 0.1f;
//        double d = 1.0/10;
//        System.out.println(f==d);   //false
//        System.out.println(f);
//        System.out.println(d);
//        System.out.println("=========================");
//        float f1 = 11234455333333333f;
//        float f2 = f1+1;
//        System.out.println(f1==f2); //true
//        //银行业务表示钱?
//        //BigDecimal

        System.out.println("==============================");
        char c1 = 'a';
        char c2 = '方';

        System.out.println(c1);
        System.out.println((int)c1);    //根据unicode表转换,2个字节表示的字符  2**16个
        System.out.println(c2);
        System.out.println((int)c2);
        char c3 = '\u0061';     //a的编码
        System.out.println(c3);
    }

}