黑马程序员技术交流社区

标题: 比较的基础 [打印本页]

作者: 374856298    时间: 2015-4-27 22:12
标题: 比较的基础
/*
class  Bj
{
        public static void main(String[] args)
        {
                short x=1,y=2;
                short t=(short)(x+y);
                System.out.println(t);
        }
}


class Bj
{
        public static void main(String[] args)
        {
                int x,y;
                        x=2;
                        y=3;
                System.out.println(x*y);
                System.out.println("*************");

                System.out.println(x+y<3^x*y>2);


        }
}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2